diff options
| author | Ryan Dahl <ry@tinyclouds.org> | 2018-12-23 18:49:46 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-12-23 18:49:46 -0500 |
| commit | 7143f7d86043c05f0b4a303a41c29ea90b87dc63 (patch) | |
| tree | 01641b145ee36d161e81e68466843f4f3e2c9985 /colors | |
| parent | 0b9ab1249b4bc0a7ab34ee68ca9ea71d7cd7d2ff (diff) | |
Make compatible with latest deno (denoland/deno_std#41)
Original: https://github.com/denoland/deno_std/commit/0772030f5d08c97744dc0d3d102dec437464bc28
Diffstat (limited to 'colors')
| -rw-r--r-- | colors/main_test.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/colors/main_test.ts b/colors/main_test.ts index 7948ee96a..3ca064bb7 100644 --- a/colors/main_test.ts +++ b/colors/main_test.ts @@ -1,6 +1,6 @@ import { assertEqual, test } from "https://deno.land/x/testing/testing.ts"; -import { color } from "./main"; -import "example"; +import { color } from "main.ts"; +import "example.ts"; test(function singleColor() { assertEqual(color.red("Hello world"), "[31mHello world[39m"); |
