Skip to content

Commit 316e18d

Browse files
committed
Fix exception namespace
1 parent ddac122 commit 316e18d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/PHPCurlClass/PHPCurlClassTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -488,7 +488,7 @@ public function testPostRedirectGet()
488488
public function testPostRedirectGetReuseObjectIncompatibleEngine()
489489
{
490490
if ((version_compare(PHP_VERSION, '5.5.11') > 0) && !defined('HHVM_VERSION')) {
491-
$this->markTestSkipped('This test is not applicable to this platform.');
491+
$this->markTestSkipped();
492492
}
493493

494494
try {
@@ -505,7 +505,7 @@ public function testPostRedirectGetReuseObjectIncompatibleEngine()
505505
false,
506506
'Reusing an existing Curl object on incompatible PHP engines shall trigger an error.'
507507
);
508-
} catch (PHPUnit_Framework_Error $e) {
508+
} catch (\PHPUnit_Framework_Error $e) {
509509
$this->assertTrue(true);
510510
}
511511
}

0 commit comments

Comments
 (0)