mirror of
https://github.com/gchq/CyberChef
synced 2025-01-25 18:55:02 +00:00
Fix test key orders
This commit is contained in:
parent
43fdc70d06
commit
56e8d56a0e
1 changed files with 4 additions and 4 deletions
|
@ -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": [
|
||||
|
|
Loading…
Reference in a new issue