diff options
Diffstat (limited to 'std/http/file_server_test.ts')
-rw-r--r-- | std/http/file_server_test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/std/http/file_server_test.ts b/std/http/file_server_test.ts index beb0c830d..638121b45 100644 --- a/std/http/file_server_test.ts +++ b/std/http/file_server_test.ts @@ -201,7 +201,7 @@ Deno.test("serveDirectory", async function (): Promise<void> { assert(page.includes("README.md")); // `Deno.FileInfo` is not completely compatible with Windows yet - // TODO: `mode` should work correctly in the future. + // TODO(bartlomieju): `mode` should work correctly in the future. // Correct this test case accordingly. Deno.build.os !== "windows" && assert(/<td class="mode">(\s)*\([a-zA-Z-]{10}\)(\s)*<\/td>/.test(page)); |