diff options
author | tokiedokie <thetokiedokie@gmail.com> | 2020-10-02 02:15:05 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-01 19:15:05 +0200 |
commit | 5590b97670206df957c43742f47601356982c658 (patch) | |
tree | f4440301a29948a3b653be1d6972c441797aa42b /std/testing/asserts.ts | |
parent | e077b93d77d42f805ceb7a58cdc3c42255c0a30b (diff) |
refactor(std/testing): Get rid of default export and make std/testing/diff.ts private (#7592)
Diffstat (limited to 'std/testing/asserts.ts')
-rw-r--r-- | std/testing/asserts.ts | 2 |
1 files changed, 1 insertions, 1 deletions
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]"; |