Skip to content

Commit 96918a1

Browse files
committed
Replace slashes in filter
1 parent 070b627 commit 96918a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -425,7 +425,7 @@ mod tests {
425425
// Linux Temp Folder
426426
settings.add_filter(r" */tmp/\.tmp\S+", "[TEMP_FILE]");
427427
// Windows Temp folder
428-
settings.add_filter(r" *\[…\].*\\Local\\Temp\\\S+", "[TEMP_FILE]");
428+
settings.add_filter(r" *\[…\].*/Local/Temp/\S+", "[TEMP_FILE]");
429429
let _bound = settings.bind_to_scope();
430430
}
431431
}

0 commit comments

Comments
 (0)