Skip to content

Commit 08dc635

Browse files
committed
Restore use of sinon.match().
1 parent f1ca6a4 commit 08dc635

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/util.test.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -488,7 +488,9 @@ for (const [
488488
if (shouldReportError) {
489489
t.true(
490490
warningSpy.calledOnceWithExactly(
491-
"CodeQL Action major versions v1, v2, and v3 have either been deprecated or will soon be deprecated. Please update all occurrences of the CodeQL Action in your workflow files to v4. For more information, see https://github.blog/changelog/2025-10-28-upcoming-deprecation-of-codeql-action-v3/",
491+
sinon.match(
492+
"CodeQL Action major versions v1, v2, and v3 have either been deprecated or will soon be deprecated.",
493+
),
492494
),
493495
);
494496
} else {

0 commit comments

Comments
 (0)