diff options
author | 木杉 <zhmushan@qq.com> | 2019-01-12 10:56:35 +0800 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-01-11 21:56:35 -0500 |
commit | 708400804a39081933b6e5735b25bbe29a4ecec1 (patch) | |
tree | e2568269a085497ba62de127f00d2c4008f5df0b | |
parent | c363fc1de4bdae957ec3ecc7b5b664a801b1ba7d (diff) |
style(net): format code (denoland/deno_std#104)
Original: https://github.com/denoland/deno_std/commit/c42686dc36ba888137fe734c59318466f41d7dfa
-rw-r--r-- | net/sha1_test.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/sha1_test.ts b/net/sha1_test.ts index 1d3673c43..b385f18da 100644 --- a/net/sha1_test.ts +++ b/net/sha1_test.ts @@ -1,8 +1,8 @@ -import {assertEqual, test} from "../testing/mod.ts"; -import {Sha1} from "./sha1.ts"; +import { assertEqual, test } from "../testing/mod.ts"; +import { Sha1 } from "./sha1.ts"; test(function testSha1() { const sha1 = new Sha1(); sha1.update("abcde"); - assertEqual(sha1.toString(), "03de6c570bfe24bfc328ccd7ca46b76eadaf4334") + assertEqual(sha1.toString(), "03de6c570bfe24bfc328ccd7ca46b76eadaf4334"); }); |