summaryrefslogtreecommitdiff
path: root/std/path
diff options
context:
space:
mode:
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 = ";";