summaryrefslogtreecommitdiff
path: root/std/hash
diff options
context:
space:
mode:
Diffstat (limited to 'std/hash')
-rw-r--r--std/hash/sha1_test.ts4
-rw-r--r--std/hash/sha256_test.ts4
-rw-r--r--std/hash/sha512_test.ts4
3 files changed, 6 insertions, 6 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");
diff --git a/std/hash/sha256_test.ts b/std/hash/sha256_test.ts
index fd9c227f4..1d03ea987 100644
--- a/std/hash/sha256_test.ts
+++ b/std/hash/sha256_test.ts
@@ -1,7 +1,7 @@
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
-import { Sha256, HmacSha256, Message } from "./sha256.ts";
+import { HmacSha256, Message, Sha256 } from "./sha256.ts";
import { assertEquals } from "../testing/asserts.ts";
-import { dirname, join, resolve, fromFileUrl } from "../path/mod.ts";
+import { dirname, fromFileUrl, join, resolve } from "../path/mod.ts";
const moduleDir = dirname(fromFileUrl(import.meta.url));
const testdataDir = resolve(moduleDir, "testdata");
diff --git a/std/hash/sha512_test.ts b/std/hash/sha512_test.ts
index ee49a229d..b9f72b150 100644
--- a/std/hash/sha512_test.ts
+++ b/std/hash/sha512_test.ts
@@ -1,7 +1,7 @@
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
-import { Sha512, HmacSha512, Message } from "./sha512.ts";
+import { HmacSha512, Message, Sha512 } from "./sha512.ts";
import { assertEquals } from "../testing/asserts.ts";
-import { dirname, join, resolve, fromFileUrl } from "../path/mod.ts";
+import { dirname, fromFileUrl, join, resolve } from "../path/mod.ts";
const moduleDir = dirname(fromFileUrl(import.meta.url));
const testdataDir = resolve(moduleDir, "testdata");