diff options
author | 2023-05-26 16:29:44 -0700 | |
---|---|---|
committer | 2023-05-26 16:29:44 -0700 | |
commit | 4298f36fc9745a130a3296a05e9577e0c9bae6fe (patch) | |
tree | e00b9fa8fa921de983d3dbb326eb4ae183207953 | |
parent | 3a0735e16470cde796c1420f4db982af61bdab9c (diff) | |
download | bun-4298f36fc9745a130a3296a05e9577e0c9bae6fe.tar.gz bun-4298f36fc9745a130a3296a05e9577e0c9bae6fe.tar.zst bun-4298f36fc9745a130a3296a05e9577e0c9bae6fe.zip |
fixup
-rw-r--r-- | test/js/web/html/URLSearchParams.test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/js/web/html/URLSearchParams.test.ts b/test/js/web/html/URLSearchParams.test.ts index 028590971..120bb2321 100644 --- a/test/js/web/html/URLSearchParams.test.ts +++ b/test/js/web/html/URLSearchParams.test.ts @@ -34,7 +34,7 @@ describe("URLSearchParams", () => { bar: "baz", }); expect(Bun.inspect(params)).toBe( - "URLSearchParams {" + "\n" + ' foo: [ "bar", "boop" ],' + "\n" + ' bar: "baz"' + "\n" + "}", + "URLSearchParams {" + "\n" + ' "foo": [ "bar", "boop" ],' + "\n" + ' "bar": "baz"' + "\n" + "}", ); params.delete("foo"); // @ts-ignore |