summaryrefslogtreecommitdiff
path: root/std/hash/sha1_test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'std/hash/sha1_test.ts')
-rw-r--r--std/hash/sha1_test.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/std/hash/sha1_test.ts b/std/hash/sha1_test.ts
index 89c60fe52..2caaff49b 100644
--- a/std/hash/sha1_test.ts
+++ b/std/hash/sha1_test.ts
@@ -1,7 +1,7 @@
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
import { assertEquals } from "../testing/asserts.ts";
-import { Sha1, Message } from "./sha1.ts";
-import { dirname, join, resolve, fromFileUrl } from "../path/mod.ts";
+import { Message, Sha1 } from "./sha1.ts";
+import { dirname, fromFileUrl, join, resolve } from "../path/mod.ts";
const moduleDir = dirname(fromFileUrl(import.meta.url));
const testdataDir = resolve(moduleDir, "testdata");