Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Restore use of sinon.match().
  • Loading branch information
mario-campos committed Nov 4, 2025
commit 08dc635f2714d65c682f391c77034f7a2551a4e7
4 changes: 3 additions & 1 deletion src/util.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -488,7 +488,9 @@ for (const [
if (shouldReportError) {
t.true(
warningSpy.calledOnceWithExactly(
"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/",
sinon.match(
"CodeQL Action major versions v1, v2, and v3 have either been deprecated or will soon be deprecated.",
),
),
);
} else {
Expand Down
Loading