We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ddc7585 commit 1e88df8Copy full SHA for 1e88df8
tests/PHPCurlClass/PHPCurlClassTest.php
@@ -385,16 +385,9 @@ public function testCookieJar()
385
386
public function testMultipleCookieResponse()
387
{
388
- $expected_response = 'cookie1=scrumptious,cookie2=mouthwatering';
389
-
390
- // github.com/facebook/hhvm/issues/2345
391
- if (defined('HHVM_VERSION')) {
392
- $expected_response = 'cookie2=mouthwatering,cookie1=scrumptious';
393
- }
394
395
$test = new Test();
396
$test->server('multiple_cookie', 'GET');
397
- $this->assertEquals($expected_response, $test->curl->response_headers['Set-Cookie']);
+ $this->assertEquals('cookie1=scrumptious,cookie2=mouthwatering', $test->curl->response_headers['Set-Cookie']);
398
}
399
400
public function testError()
0 commit comments