From 8095d260a536c040bad3920b0769fb6ef59ee70c Mon Sep 17 00:00:00 2001 From: ohill <145173879+ohill@users.noreply.github.com> Date: Mon, 23 Oct 2023 15:01:07 -0400 Subject: [PATCH] update TestBasicCatchpointCatchup --- test/e2e-go/features/catchup/catchpointCatchup_test.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/e2e-go/features/catchup/catchpointCatchup_test.go b/test/e2e-go/features/catchup/catchpointCatchup_test.go index f9f62b3d06..eb83451307 100644 --- a/test/e2e-go/features/catchup/catchpointCatchup_test.go +++ b/test/e2e-go/features/catchup/catchpointCatchup_test.go @@ -363,6 +363,10 @@ func TestBasicCatchpointCatchup(t *testing.T) { err = fixture.ClientWaitForRoundWithTimeout(usingNodeRestClient, uint64(targetCatchpointRound+1)) a.NoError(err) + + // ensure the raw block can be downloaded (including cert) + _, err = usingNodeRestClient.RawBlock(uint64(targetCatchpointRound)) + a.NoError(err) } func TestCatchpointLabelGeneration(t *testing.T) {