summaryrefslogtreecommitdiff
path: root/std/node/querystring_test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'std/node/querystring_test.ts')
-rw-r--r--std/node/querystring_test.ts5
1 files changed, 2 insertions, 3 deletions
diff --git a/std/node/querystring_test.ts b/std/node/querystring_test.ts
index 0a37eee6b..63abf471b 100644
--- a/std/node/querystring_test.ts
+++ b/std/node/querystring_test.ts
@@ -1,8 +1,7 @@
-const { test } = Deno;
import { assertEquals } from "../testing/asserts.ts";
import { stringify, parse } from "./querystring.ts";
-test({
+Deno.test({
name: "stringify",
fn() {
assertEquals(
@@ -17,7 +16,7 @@ test({
},
});
-test({
+Deno.test({
name: "parse",
fn() {
assertEquals(parse("a=hello&b=5&c=true&d=foo&d=bar"), {