Skip to content

Commit

Permalink
fix FpmRequestTest with http_build_query on parameters
Browse files Browse the repository at this point in the history
# Conflicts:
#	tests/Unit/FpmRequestTest.php
  • Loading branch information
d8vjork committed May 24, 2024
1 parent a871990 commit c3cdb8b
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions tests/Unit/FpmRequestTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -100,10 +100,7 @@ public function test_api_gateway_v2_query_parameters_are_handled()
]);

$this->assertSame(
http_build_query([
'key1' => 'value1',
'key2' => ['value2', 'value3'],
]),
'key1=value1&key2=value2&key2=value3',
$request->serverVariables['QUERY_STRING']
);
}
Expand Down

0 comments on commit c3cdb8b

Please sign in to comment.