summaryrefslogtreecommitdiff
path: root/std/encoding/base32_test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'std/encoding/base32_test.ts')
-rw-r--r--std/encoding/base32_test.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/std/encoding/base32_test.ts b/std/encoding/base32_test.ts
index cfefe54d7..a604bf323 100644
--- a/std/encoding/base32_test.ts
+++ b/std/encoding/base32_test.ts
@@ -1,8 +1,8 @@
// Test cases copied from https://github.com/LinusU/base32-encode/blob/master/test.js
// Copyright (c) 2016-2017 Linus Unnebäck. MIT license.
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
-import { assertEquals, assert } from "../testing/asserts.ts";
-import { encode, decode } from "./base32.ts";
+import { assert, assertEquals } from "../testing/asserts.ts";
+import { decode, encode } from "./base32.ts";
// Lifted from https://stackoverflow.com/questions/38987784
const fromHexString = (hexString: string): Uint8Array =>