0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-10-30 09:08:00 -04:00

style(net): format code (denoland/deno_std#104)

Original: c42686dc36
This commit is contained in:
木杉 2019-01-12 10:56:35 +08:00 committed by Ryan Dahl
parent c363fc1de4
commit 708400804a

View file

@ -1,8 +1,8 @@
import {assertEqual, test} from "../testing/mod.ts"; import { assertEqual, test } from "../testing/mod.ts";
import {Sha1} from "./sha1.ts"; import { Sha1 } from "./sha1.ts";
test(function testSha1() { test(function testSha1() {
const sha1 = new Sha1(); const sha1 = new Sha1();
sha1.update("abcde"); sha1.update("abcde");
assertEqual(sha1.toString(), "03de6c570bfe24bfc328ccd7ca46b76eadaf4334") assertEqual(sha1.toString(), "03de6c570bfe24bfc328ccd7ca46b76eadaf4334");
}); });