diff options
author | Feng Yu <F3n67u@outlook.com> | 2021-10-10 21:24:03 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-10 15:24:03 +0200 |
commit | ffea0f198c27368405541e5a871deccc132c7ad9 (patch) | |
tree | f33755e77a619300514423c8ddd0573215b3f5fd | |
parent | 76de56091bcda1eae8cfb398981c8470d06268e3 (diff) |
test: remove duplicate import (#12374)
-rw-r--r-- | cli/tests/unit/test_util.ts | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/cli/tests/unit/test_util.ts b/cli/tests/unit/test_util.ts index bf6c66fee..ee924fe8a 100644 --- a/cli/tests/unit/test_util.ts +++ b/cli/tests/unit/test_util.ts @@ -1,9 +1,6 @@ // Copyright 2018-2021 the Deno authors. All rights reserved. MIT license. -import { - assert, - assertEquals, -} from "../../../test_util/std/testing/asserts.ts"; +import { assert } from "../../../test_util/std/testing/asserts.ts"; import * as colors from "../../../test_util/std/fmt/colors.ts"; export { colors }; import { resolve } from "../../../test_util/std/path/mod.ts"; |