From 785b48a423abf98490ac1ea7aebc2020fe445bc1 Mon Sep 17 00:00:00 2001 From: joemclo Date: Sun, 17 Mar 2019 00:57:09 +0300 Subject: [PATCH] Fix a missing import in manual.md example for testing (#1935) --- website/manual.md | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/website/manual.md b/website/manual.md index 0ba5b05441..e5104e6052 100644 --- a/website/manual.md +++ b/website/manual.md @@ -430,11 +430,8 @@ browser JavaScript, Deno can import libraries directly from URLs. This example uses a URL to import a test runner library: ```ts -import { - test, - assertEquals, - runIfMain -} from "https://deno.land/std/testing/mod.ts"; +import { test, runIfMain } from "https://deno.land/std/testing/mod.ts"; +import { assertEquals } from "https://deno.land/std/testing/asserts.ts"; test(function t1() { assertEquals("hello", "hello");