summaryrefslogtreecommitdiff
path: root/std/path/common_test.ts
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2020-07-14 15:24:17 -0400
committerGitHub <noreply@github.com>2020-07-14 15:24:17 -0400
commitcde4dbb35132848ffece59ef9cfaccff32347124 (patch)
treecc7830968c6decde704c8cfb83c9185193dc698f /std/path/common_test.ts
parent9eca71caa1674c31f9cc5d4e86c03f10b59e0a00 (diff)
Use dprint for internal formatting (#6682)
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\\");
},