Skip to content

Commit d9e48e2

Browse files
committed
lint
1 parent 3c2a829 commit d9e48e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/unit/urlpattern_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ Deno.test(function urlPatternFlagsRegression() {
6969
});
7070

7171
Deno.test(function urlPatternIgnoreCase() {
72-
let p = new URLPattern({ pathname: "/test" }, { ignoreCase: true });
72+
const p = new URLPattern({ pathname: "/test" }, { ignoreCase: true });
7373
assert(p.test("/test", "http://localhost"));
7474
assert(p.test("/TeSt", "http://localhost"));
7575
});

0 commit comments

Comments
 (0)