diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2020-07-14 15:24:17 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-14 15:24:17 -0400 |
commit | cde4dbb35132848ffece59ef9cfaccff32347124 (patch) | |
tree | cc7830968c6decde704c8cfb83c9185193dc698f /cli/tests/unit/path_from_url_test.ts | |
parent | 9eca71caa1674c31f9cc5d4e86c03f10b59e0a00 (diff) |
Use dprint for internal formatting (#6682)
Diffstat (limited to 'cli/tests/unit/path_from_url_test.ts')
-rw-r--r-- | cli/tests/unit/path_from_url_test.ts | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/cli/tests/unit/path_from_url_test.ts b/cli/tests/unit/path_from_url_test.ts index d43245c06..047451d48 100644 --- a/cli/tests/unit/path_from_url_test.ts +++ b/cli/tests/unit/path_from_url_test.ts @@ -8,11 +8,11 @@ unitTest( function pathFromURLPosix(): void { assertEquals( pathFromURL(new URL("file:///test/directory")), - "/test/directory" + "/test/directory", ); assertEquals(pathFromURL(new URL("file:///space_ .txt")), "/space_ .txt"); assertThrows(() => pathFromURL(new URL("https://deno.land/welcome.ts"))); - } + }, ); unitTest( @@ -20,11 +20,11 @@ unitTest( function pathFromURLWin32(): void { assertEquals( pathFromURL(new URL("file:///c:/windows/test")), - "c:\\windows\\test" + "c:\\windows\\test", ); assertEquals( pathFromURL(new URL("file:///c:/space_ .txt")), - "c:\\space_ .txt" + "c:\\space_ .txt", ); assertThrows(() => pathFromURL(new URL("https://deno.land/welcome.ts"))); /* TODO(ry) Add tests for these situations @@ -35,5 +35,5 @@ unitTest( * pound_#.txt file:///D:/weird_names/pound_%23.txt * swapped_surrogate_pair_��.txt file:///D:/weird_names/swapped_surrogate_pair_%EF%BF%BD%EF%BF%BD.txt */ - } + }, ); |