summaryrefslogtreecommitdiff
path: root/std/path
diff options
context:
space:
mode:
authorChris Knight <cknight1234@gmail.com>2020-06-07 14:20:33 +0100
committerGitHub <noreply@github.com>2020-06-07 09:20:33 -0400
commit3ef94c5473ac77366d009c7a7c665f695670f886 (patch)
tree0baa502ca705e9e0a38e013def65f1ab545e643b /std/path
parentadffbacfe49aac480fc34e78035200ab9602443c (diff)
refactor(std): remove testing dependencies from non-test code (#5838)
Diffstat (limited to 'std/path')
-rw-r--r--std/path/glob.ts2
-rw-r--r--std/path/win32.ts2
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 = ";";