Skip to content

Commit 65b561c

Browse files
committed
:octocat: the question mark didn't belong here in first place
1 parent bb95905 commit 65b561c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/QueryTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ public function parseQueryProvider():array{
120120
'Can decode %20 to " "' => ['q%20a=a%20b', ['q a' => 'a b']],
121121
'Can parse strings with no values by assigning each to null' => ['a&q', ['a' => null, 'q' => null]],
122122
'Does not strip trailing equal signs' => ['data=abc=', ['data' => 'abc=']],
123-
'Can store duplicates without affecting other values' => ['?µ=c&foo=a&foo=b', ['' => 'c', 'foo' => ['a', 'b']]],
123+
'Can store duplicates without affecting other values' => ['foo=a&foo=b&µ=c', ['foo' => ['a', 'b'], 'µ' => 'c']],
124124
'Sets value to null when no "=" is present' => ['foo', ['foo' => null]],
125125
'Preserves "0" keys' => ['0', ['0' => null]],
126126
'Sets the value to an empty string when "=" is present' => ['0=', ['0' => '']],

0 commit comments

Comments
 (0)