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.
2 parents bfef4a7 + ffaeafe commit 7c2245fCopy full SHA for 7c2245f
.travis.yml
@@ -7,10 +7,6 @@ php:
7
- 5.6
8
- hhvm
9
10
-matrix:
11
- allow_failures:
12
- - php: hhvm
13
-
14
before_script:
15
- bash tests/before_script.sh
16
tests/PHPCurlClass/PHPCurlClassTest.php
@@ -460,13 +460,7 @@ public function testErrorMessage()
460
{
461
$test = new Test();
462
$test->server('error_message', 'GET');
463
464
- $expected_response = 'HTTP/1.1 401 Unauthorized';
465
- if (defined('HHVM_VERSION')) {
466
- $expected_response = 'HTTP/1.1 401';
467
- }
468
469
- $this->assertEquals($expected_response, $test->curl->error_message);
+ $this->assertEquals('HTTP/1.1 401 Unauthorized', $test->curl->error_message);
470
}
471
472
public function testHeaders()
0 commit comments