diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2020-09-27 06:22:32 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-27 12:22:32 +0200 |
commit | df02e315075456f8d5f75472abbb1fa81e237827 (patch) | |
tree | d0dc9eb502d17f5bfd463bfd9162f46fead4e307 /std/testing/asserts_test.ts | |
parent | c28757f379fd1141c817b21ce2fe4dd86b29cd8c (diff) |
feat(fmt): Sort named import and export specifiers (#7711)
Diffstat (limited to 'std/testing/asserts_test.ts')
-rw-r--r-- | std/testing/asserts_test.ts | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/std/testing/asserts_test.ts b/std/testing/asserts_test.ts index 4840bcf53..7b57fbfa0 100644 --- a/std/testing/asserts_test.ts +++ b/std/testing/asserts_test.ts @@ -2,23 +2,23 @@ import { _format, assert, - assertNotEquals, - assertStringContains, assertArrayContains, + assertEquals, + AssertionError, assertMatch, + assertNotEquals, assertNotMatch, - assertEquals, - assertStrictEquals, assertNotStrictEquals, + assertStrictEquals, + assertStringContains, assertThrows, assertThrowsAsync, - AssertionError, equal, fail, unimplemented, unreachable, } from "./asserts.ts"; -import { red, green, gray, bold, yellow, stripColor } from "../fmt/colors.ts"; +import { bold, gray, green, red, stripColor, yellow } from "../fmt/colors.ts"; Deno.test("testingEqual", function (): void { assert(equal("world", "world")); |