diff options
Diffstat (limited to 'fs/globrex_test.ts')
| -rw-r--r-- | fs/globrex_test.ts | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/fs/globrex_test.ts b/fs/globrex_test.ts index 8f97f2897..f84f3ac8c 100644 --- a/fs/globrex_test.ts +++ b/fs/globrex_test.ts @@ -3,11 +3,12 @@ // Copyright (c) 2018 Terkel Gjervig Nielsen import * as deno from "deno"; -import { test, assert } from "../testing/mod.ts"; +import { test } from "../testing/mod.ts"; +import { assertEq } from "../testing/asserts.ts"; import { globrex } from "./globrex.ts"; const isWin = deno.platform.os === "win"; -const t = { equal: assert.equal, is: assert.equal }; +const t = { equal: assertEq, is: assertEq }; function match(glob, strUnix, strWin?, opts = {}) { if (typeof strWin === "object") { |
