summaryrefslogtreecommitdiff
path: root/std/path/common_test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'std/path/common_test.ts')
-rw-r--r--std/path/common_test.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/std/path/common_test.ts b/std/path/common_test.ts
index 921cf1c99..7b7bd2ba3 100644
--- a/std/path/common_test.ts
+++ b/std/path/common_test.ts
@@ -11,7 +11,7 @@ Deno.test({
"file://deno/std/path/mod.ts",
"file://deno/cli/js/main.ts",
],
- "/"
+ "/",
);
assertEquals(actual, "file://deno/");
},
@@ -22,7 +22,7 @@ Deno.test({
fn() {
const actual = common(
["file://deno/cli/js/deno.ts", "https://deno.land/std/path/mod.ts"],
- "/"
+ "/",
);
assertEquals(actual, "");
},
@@ -37,7 +37,7 @@ Deno.test({
"c:\\deno\\std\\path\\mod.ts",
"c:\\deno\\cli\\js\\main.ts",
],
- "\\"
+ "\\",
);
assertEquals(actual, "c:\\deno\\");
},