summaryrefslogtreecommitdiff
path: root/testing
diff options
context:
space:
mode:
Diffstat (limited to 'testing')
-rw-r--r--testing/asserts.ts2
-rw-r--r--testing/asserts_test.ts2
-rw-r--r--testing/mod.ts2
3 files changed, 3 insertions, 3 deletions
diff --git a/testing/asserts.ts b/testing/asserts.ts
index 56480c95b..adf77f3a7 100644
--- a/testing/asserts.ts
+++ b/testing/asserts.ts
@@ -1,5 +1,5 @@
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
-import { red, green, white, gray, bold } from "../colors/mod.ts";
+import { red, green, white, gray, bold } from "../fmt/colors.ts";
import diff, { DiffType, DiffResult } from "./diff.ts";
import { format } from "./format.ts";
diff --git a/testing/asserts_test.ts b/testing/asserts_test.ts
index ba07b3a83..b480fe7c9 100644
--- a/testing/asserts_test.ts
+++ b/testing/asserts_test.ts
@@ -15,7 +15,7 @@ import {
unreachable
} from "./asserts.ts";
import { test } from "./mod.ts";
-import { red, green, white, gray, bold } from "../colors/mod.ts";
+import { red, green, white, gray, bold } from "../fmt/colors.ts";
test(function testingEqual(): void {
assert(equal("world", "world"));
diff --git a/testing/mod.ts b/testing/mod.ts
index b237a0d85..c68528fbd 100644
--- a/testing/mod.ts
+++ b/testing/mod.ts
@@ -9,7 +9,7 @@ import {
gray,
yellow,
italic
-} from "../colors/mod.ts";
+} from "../fmt/colors.ts";
export type TestFunction = () => void | Promise<void>;
export interface TestDefinition {