From 3ef94c5473ac77366d009c7a7c665f695670f886 Mon Sep 17 00:00:00 2001 From: Chris Knight Date: Sun, 7 Jun 2020 14:20:33 +0100 Subject: refactor(std): remove testing dependencies from non-test code (#5838) --- std/path/glob.ts | 2 +- std/path/win32.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'std/path') 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 = ";"; -- cgit v1.2.3