From 96fe2d10a4da0521b7cd72d90fd42121f9311978 Mon Sep 17 00:00:00 2001 From: Yoshiya Hinosawa Date: Sun, 6 Oct 2019 01:02:34 +0900 Subject: Update eslint and @typescript-eslint (denoland/deno_std#621) Original: https://github.com/denoland/deno_std/commit/c3fe858f98565edbe8faeb3cf2e5b873304f4f6e --- fs/path/zero_length_strings_test.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'fs/path/zero_length_strings_test.ts') diff --git a/fs/path/zero_length_strings_test.ts b/fs/path/zero_length_strings_test.ts index 20405563c..744e97735 100644 --- a/fs/path/zero_length_strings_test.ts +++ b/fs/path/zero_length_strings_test.ts @@ -27,7 +27,8 @@ test(function normalizeZeroLength() { }); test(function isAbsoluteZeroLength() { - // Since '' is not a valid path in any of the common environments, return false + // Since '' is not a valid path in any of the common environments, + // return false assertEquals(path.posix.isAbsolute(""), false); if (path.win32) assertEquals(path.win32.isAbsolute(""), false); }); @@ -40,7 +41,8 @@ test(function resolveZeroLength() { }); test(function relativeZeroLength() { - // relative, internally calls resolve. So, '' is actually the current directory + // relative, internally calls resolve. So, '' is actually the current + // directory assertEquals(path.relative("", pwd), ""); assertEquals(path.relative(pwd, ""), ""); assertEquals(path.relative(pwd, pwd), ""); -- cgit v1.2.3