From df02e315075456f8d5f75472abbb1fa81e237827 Mon Sep 17 00:00:00 2001 From: David Sherret Date: Sun, 27 Sep 2020 06:22:32 -0400 Subject: feat(fmt): Sort named import and export specifiers (#7711) --- std/testing/asserts_test.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'std/testing/asserts_test.ts') 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")); -- cgit v1.2.3