diff options
author | Chris Knight <cknight1234@gmail.com> | 2020-06-07 14:20:33 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-07 09:20:33 -0400 |
commit | 3ef94c5473ac77366d009c7a7c665f695670f886 (patch) | |
tree | 0baa502ca705e9e0a38e013def65f1ab545e643b /std/path | |
parent | adffbacfe49aac480fc34e78035200ab9602443c (diff) |
refactor(std): remove testing dependencies from non-test code (#5838)
Diffstat (limited to 'std/path')
-rw-r--r-- | std/path/glob.ts | 2 | ||||
-rw-r--r-- | std/path/win32.ts | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/std/path/glob.ts b/std/path/glob.ts index 34fc213f6..c7d23b344 100644 --- a/std/path/glob.ts +++ b/std/path/glob.ts @@ -4,7 +4,7 @@ import { SEP, SEP_PATTERN } from "./separator.ts"; import { globrex } from "./_globrex.ts"; import { join, normalize } from "./mod.ts"; -import { assert } from "../testing/asserts.ts"; +import { assert } from "../_util/assert.ts"; export interface GlobOptions { extended?: boolean; diff --git a/std/path/win32.ts b/std/path/win32.ts index f556c5b73..8e438a79c 100644 --- a/std/path/win32.ts +++ b/std/path/win32.ts @@ -17,7 +17,7 @@ import { normalizeString, _format, } from "./_util.ts"; -import { assert } from "../testing/asserts.ts"; +import { assert } from "../_util/assert.ts"; export const sep = "\\"; export const delimiter = ";"; |