From ec46fde0acaf624be1a16539a05dc18b70da8114 Mon Sep 17 00:00:00 2001 From: Joe Elliott Date: Tue, 29 Oct 2024 13:52:17 -0400 Subject: [PATCH] do what the comment says so CI passes Signed-off-by: Joe Elliott --- integration/e2e/api_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration/e2e/api_test.go b/integration/e2e/api_test.go index 7633f0e74bd..aa8497491a8 100644 --- a/integration/e2e/api_test.go +++ b/integration/e2e/api_test.go @@ -627,7 +627,7 @@ func callSearchTagValuesV2AndAssert(t *testing.T, svc *e2e.HTTPService, tagName, require.Equal(t, expected.TagValues, actualGrpcResp.TagValues) // assert metrics, and make sure it's non-zero when response is non-empty if len(grpcResp.TagValues) > 0 { - require.Greater(t, grpcResp.Metrics.InspectedBytes, uint64(100)) + require.Greater(t, grpcResp.Metrics.InspectedBytes, uint64(0)) } }