summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--testing/README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/testing/README.md b/testing/README.md
index 919b1279b..f9f47eaa6 100644
--- a/testing/README.md
+++ b/testing/README.md
@@ -3,7 +3,7 @@
## Usage
```ts
-import { test, assert, equal, assertEqual } from 'https://deno.land/x/testing/testing.ts';
+import { test, assert, equal, assertEqual } from 'https://deno.land/x/testing/mod.ts';
test({
name: 'testing example',
@@ -28,4 +28,4 @@ test(function example() {
assertEqual("world", "world");
assertEqual({hello: "world"}, {hello: "world"});
});
-``` \ No newline at end of file
+```