summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--website/manual.md7
1 files changed, 2 insertions, 5 deletions
diff --git a/website/manual.md b/website/manual.md
index 0ba5b0544..e5104e605 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");