From 8164d0200bc8d1e6d0d03ba7c7eccaa8b4fb2b7e Mon Sep 17 00:00:00 2001 From: Yuri Shkuro Date: Sat, 14 Dec 2024 23:06:29 -0500 Subject: [PATCH] require Signed-off-by: Yuri Shkuro --- storage_v2/factoryadapter/reader_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/storage_v2/factoryadapter/reader_test.go b/storage_v2/factoryadapter/reader_test.go index ce74337756d..ddab5192bfe 100644 --- a/storage_v2/factoryadapter/reader_test.go +++ b/storage_v2/factoryadapter/reader_test.go @@ -122,7 +122,7 @@ func TestTraceReader_GetTracesErrorResponse(t *testing.T) { traces, err := iter.FlattenWithErrors(traceReader.GetTraces( context.Background(), traceID(1), traceID(2), )) - assert.ErrorIs(t, err, test.expectedErr) + require.ErrorIs(t, err, test.expectedErr) assert.Len(t, traces, test.expectedIters) }) }