diff options
Diffstat (limited to 'cli/tests/unit/streams_deprecated.ts')
-rw-r--r-- | cli/tests/unit/streams_deprecated.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/tests/unit/streams_deprecated.ts b/cli/tests/unit/streams_deprecated.ts index 77750072c..a3c81777d 100644 --- a/cli/tests/unit/streams_deprecated.ts +++ b/cli/tests/unit/streams_deprecated.ts @@ -1,7 +1,7 @@ // Copyright 2018-2021 the Deno authors. All rights reserved. MIT license. -import { assertEquals, unitTest } from "./test_util.ts"; +import { assertEquals } from "./test_util.ts"; -unitTest(async function symlinkSyncPerm() { +Deno.test(async function symlinkSyncPerm() { const rs = new ReadableStream<string>({ start(controller) { controller.enqueue("hello "); |