From 4d997d4e2239adb0d982245271e43938443e871f Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Sat, 24 Aug 2019 10:38:18 -0700 Subject: Move colors to fmt (denoland/deno_std#571) Original: https://github.com/denoland/deno_std/commit/28e77389ff409814c9da81d767458b36534f095a --- testing/asserts.ts | 2 +- testing/asserts_test.ts | 2 +- testing/mod.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'testing') 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; export interface TestDefinition { -- cgit v1.2.3