Skip to content

Commit

Permalink
(Sonar) Fixed finding: "Unnecessary character escapes should be removed"
Browse files Browse the repository at this point in the history
  • Loading branch information
pixeebot[bot] authored Dec 7, 2024
1 parent f57da81 commit 57a1b5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/cli_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ tape('cli should accept single JS file', (test) => {
tape('cli should read match argument', (test) => {
test.plan(1);

execFile('node', [pkg.bin, '-o', 'tmp/inline', '-v', '--match', '\\\.min\\\.js$', 'tests/fixtures'], null, (error, stdout) => {
execFile('node', [pkg.bin, '-o', 'tmp/inline', '-v', '--match', "\\.min\\.js$", 'tests/fixtures'], null, (error, stdout) => {
if (error) {
test.fail(error);
}
Expand Down

0 comments on commit 57a1b5f

Please sign in to comment.