From 56e8d56a0e73f0e5d26cb46b5ca181e64001048f Mon Sep 17 00:00:00 2001 From: David Tomaschik Date: Mon, 28 Oct 2024 13:03:18 -0700 Subject: [PATCH] Fix test key orders --- tests/operations/tests/ExtractURI.mjs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/operations/tests/ExtractURI.mjs b/tests/operations/tests/ExtractURI.mjs index 9e08d4f0..bba741da 100644 --- a/tests/operations/tests/ExtractURI.mjs +++ b/tests/operations/tests/ExtractURI.mjs @@ -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:", - "hostname": "www.example.org", - "port": "9999", - "pathname": "/path", "hash": "#frob", + "hostname": "www.example.org", + "pathname": "/path", + "port": "9999", + "protocol": "http:", "query": { "foo": "bar", "baz": [