From 00c0bbf7a83c0a789d1a83f126089b384ccac86a Mon Sep 17 00:00:00 2001 From: Kashif Khan <70996046+kashifkhan0771@users.noreply.github.com> Date: Thu, 19 Dec 2024 22:01:12 +0500 Subject: [PATCH] fixed integration test for neutrinoapi detector (#3796) --- pkg/detectors/neutrinoapi/neutrinoapi_integration_test.go | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pkg/detectors/neutrinoapi/neutrinoapi_integration_test.go b/pkg/detectors/neutrinoapi/neutrinoapi_integration_test.go index 599e8e543a93..72aceff9797c 100644 --- a/pkg/detectors/neutrinoapi/neutrinoapi_integration_test.go +++ b/pkg/detectors/neutrinoapi/neutrinoapi_integration_test.go @@ -48,6 +48,10 @@ func TestNeutrinoApi_FromChunk(t *testing.T) { verify: true, }, want: []detectors.Result{ + { + DetectorType: detectorspb.DetectorType_NeutrinoApi, + Verified: false, + }, { DetectorType: detectorspb.DetectorType_NeutrinoApi, Verified: true, @@ -68,6 +72,10 @@ func TestNeutrinoApi_FromChunk(t *testing.T) { DetectorType: detectorspb.DetectorType_NeutrinoApi, Verified: false, }, + { + DetectorType: detectorspb.DetectorType_NeutrinoApi, + Verified: false, + }, }, wantErr: false, },