summaryrefslogtreecommitdiff
path: root/testing
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2019-08-24 10:38:18 -0700
committerGitHub <noreply@github.com>2019-08-24 10:38:18 -0700
commit4d997d4e2239adb0d982245271e43938443e871f (patch)
tree72153ebc09bd34a7389e8d3b294fe776fd16606f /testing
parente933a8a0e10f46e6128b277eaadd7ae733a92eeb (diff)
Move colors to fmt (denoland/deno_std#571)
Original: https://github.com/denoland/deno_std/commit/28e77389ff409814c9da81d767458b36534f095a
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 {