diff options
Diffstat (limited to 'js/chmod_test.ts')
-rw-r--r-- | js/chmod_test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/chmod_test.ts b/js/chmod_test.ts index 0b7dab9b4..f6eac05b0 100644 --- a/js/chmod_test.ts +++ b/js/chmod_test.ts @@ -1,7 +1,7 @@ // Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. import { testPerm, assertEqual } from "./test_util.ts"; -const isNotWindows = Deno.platform.os !== "win"; +const isNotWindows = Deno.build.os !== "win"; testPerm({ read: true, write: true }, function chmodSyncSuccess() { const enc = new TextEncoder(); |