Filter out commit since last tag in tests (#9766)

Follow-up to #9730, which broke some snapshots for me since the pattern
would not capture the now-working commits since last tag.
This commit is contained in:
konsti 2024-12-10 12:37:06 +01:00 committed by GitHub
parent 26cb3f6300
commit 85a4fb4471
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ pub const INSTA_FILTERS: &[(&str, &str)] = &[
(r"uv\.exe", "uv"), (r"uv\.exe", "uv"),
// uv version display // uv version display
( (
r"uv(-.*)? \d+\.\d+\.\d+( \(.*\))?", r"uv(-.*)? \d+\.\d+\.\d+(\+\d+)?( \(.*\))?",
r"uv [VERSION] ([COMMIT] DATE)", r"uv [VERSION] ([COMMIT] DATE)",
), ),
// The exact message is host language dependent // The exact message is host language dependent