diff options
author | Kevin (Kun) "Kassimo" Qian <kevinkassimo@gmail.com> | 2019-03-06 13:54:58 -0800 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-03-06 16:54:58 -0500 |
commit | de1a10e5f7afe793a66b2349642ea135fc066104 (patch) | |
tree | 3d91d82a62808f744fc189705110a50d7d8d478e /js/chmod_test.ts | |
parent | 91364cabae8687e7620edac406b43cb40cb55878 (diff) |
Reorganize version and platform into Deno.build and Deno.version (#1879)
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(); |