From 5590b97670206df957c43742f47601356982c658 Mon Sep 17 00:00:00 2001 From: tokiedokie Date: Fri, 2 Oct 2020 02:15:05 +0900 Subject: refactor(std/testing): Get rid of default export and make std/testing/diff.ts private (#7592) --- std/testing/asserts.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'std/testing/asserts.ts') diff --git a/std/testing/asserts.ts b/std/testing/asserts.ts index 889a622fd..f93e043dc 100644 --- a/std/testing/asserts.ts +++ b/std/testing/asserts.ts @@ -3,7 +3,7 @@ * for AssertionError messages in browsers. */ import { bold, gray, green, red, stripColor, white } from "../fmt/colors.ts"; -import diff, { DiffResult, DiffType } from "./diff.ts"; +import { diff, DiffResult, DiffType } from "./_diff.ts"; const CAN_NOT_DISPLAY = "[Cannot display]"; -- cgit v1.2.3