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 ddac122 commit 316e18dCopy full SHA for 316e18d
tests/PHPCurlClass/PHPCurlClassTest.php
@@ -488,7 +488,7 @@ public function testPostRedirectGet()
488
public function testPostRedirectGetReuseObjectIncompatibleEngine()
489
{
490
if ((version_compare(PHP_VERSION, '5.5.11') > 0) && !defined('HHVM_VERSION')) {
491
- $this->markTestSkipped('This test is not applicable to this platform.');
+ $this->markTestSkipped();
492
}
493
494
try {
@@ -505,7 +505,7 @@ public function testPostRedirectGetReuseObjectIncompatibleEngine()
505
false,
506
'Reusing an existing Curl object on incompatible PHP engines shall trigger an error.'
507
);
508
- } catch (PHPUnit_Framework_Error $e) {
+ } catch (\PHPUnit_Framework_Error $e) {
509
$this->assertTrue(true);
510
511
0 commit comments