From 9dde9e946c77caacfe1f6ec92c792ec2df0b2071 Mon Sep 17 00:00:00 2001 From: Kashif Khan <70996046+kashifkhan0771@users.noreply.github.com> Date: Thu, 19 Dec 2024 22:00:45 +0500 Subject: [PATCH] fixed plivo detector integration test (#3794) --- pkg/detectors/plivo/plivo_integration_test.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkg/detectors/plivo/plivo_integration_test.go b/pkg/detectors/plivo/plivo_integration_test.go index 26db005f45a3..af254874ba29 100644 --- a/pkg/detectors/plivo/plivo_integration_test.go +++ b/pkg/detectors/plivo/plivo_integration_test.go @@ -52,6 +52,7 @@ func TestPlivo_FromChunk(t *testing.T) { DetectorType: detectorspb.DetectorType_Plivo, Redacted: id, Verified: true, + RawV2: []byte(secret + id), }, }, wantErr: false, @@ -69,6 +70,7 @@ func TestPlivo_FromChunk(t *testing.T) { DetectorType: detectorspb.DetectorType_Plivo, Redacted: id, Verified: false, + RawV2: []byte(inactiveSecret + id), }, }, wantErr: false,