diff options
| author | 木杉 <zhmushan@qq.com> | 2019-01-04 18:09:42 +0800 |
|---|---|---|
| committer | Ryan Dahl <ry@tinyclouds.org> | 2019-01-04 05:09:42 -0500 |
| commit | f918e3faac851eedaa12b785597debb20117cc81 (patch) | |
| tree | dbf3fe14f83b7ba8ac2b78cb0e24ad1936763fb4 | |
| parent | 9e19717d756e43ab67668532eac50891a2f58cb3 (diff) | |
fix(testing): readme import url (denoland/deno_std#81)
Original: https://github.com/denoland/deno_std/commit/9d3d90560c92be4f080f984209a7ffd5a4bbb920
| -rw-r--r-- | testing/README.md | 4 |
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 +``` |
