Skip to content

Commit

Permalink
Fix test key orders
Browse files Browse the repository at this point in the history
  • Loading branch information
Matir committed Oct 28, 2024
1 parent 43fdc70 commit 56e8d56
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/operations/tests/ExtractURI.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ TestRegister.addTests([
name: "Extract URI: Test",
input: "http://www.example.org:9999/path?foo=bar&baz=1&baz=2#frob",
expectedOutput: JSON.stringify({
"protocol": "http:",
"hash": "#frob",
"hostname": "www.example.org",
"port": "9999",
"pathname": "/path",
"hash": "#frob",
"port": "9999",
"protocol": "http:",
"query": {
"foo": "bar",
"baz": [
Expand Down

0 comments on commit 56e8d56

Please sign in to comment.