Skip to content

Commit

Permalink
Fix a missing import in manual.md example for testing (denoland#1935)
Browse files Browse the repository at this point in the history
  • Loading branch information
joemclo authored and ry committed Mar 16, 2019
1 parent 23108b0 commit 785b48a
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions website/manual.md
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down

0 comments on commit 785b48a

Please sign in to comment.