From 327342a1bb38ef8492a8d1f3fe4ebd861574df87 Mon Sep 17 00:00:00 2001 From: Mick Grove Date: Wed, 29 Apr 2026 23:16:21 -0700 Subject: [PATCH] copilot fixes --- tests/int_base64.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/int_base64.rs b/tests/int_base64.rs index bb1661a..d154ef2 100644 --- a/tests/int_base64.rs +++ b/tests/int_base64.rs @@ -27,7 +27,7 @@ fn detects_base64_encoded_secret() -> anyhow::Result<()> { .code(200) .stdout( predicate::str::contains("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") - .and(predicate::str::contains("\"encoding\": \"base64\"")), + .and(predicate::str::contains("\"encoding\":\"base64\"")), ); dir.close()?; @@ -111,7 +111,7 @@ fn detects_base64_in_code_with_context_verifier() -> anyhow::Result<()> { .code(200) .stdout( predicate::str::contains("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") - .and(predicate::str::contains("\"encoding\": \"base64\"")), + .and(predicate::str::contains("\"encoding\":\"base64\"")), ); dir.close()?;