mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Fix incorrect method names.
This commit is contained in:
parent
3e34a09e8b
commit
27dc666c8d
1 changed files with 3 additions and 3 deletions
|
@ -99,7 +99,7 @@ class CakeSocketTest extends CakeTestCase {
|
|||
$this->Socket->connect();
|
||||
$this->assertTrue($this->Socket->connected);
|
||||
} catch (SocketException $e) {
|
||||
$this->markTestAsSkipped('Cannot test network, skipping.');
|
||||
$this->markTestSkipped('Cannot test network, skipping.');
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -148,7 +148,7 @@ class CakeSocketTest extends CakeTestCase {
|
|||
$this->assertEquals(null, $this->Socket->lastError());
|
||||
$this->assertTrue(in_array('127.0.0.1', $this->Socket->addresses()));
|
||||
} catch (SocketException $e) {
|
||||
$this->markTestAsSkipped('Cannot test network, skipping.');
|
||||
$this->markTestSkipped('Cannot test network, skipping.');
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -267,7 +267,7 @@ class CakeSocketTest extends CakeTestCase {
|
|||
try {
|
||||
$this->Socket->connect();
|
||||
} catch (SocketException $e) {
|
||||
$this->markTestAsSkipped('Cannot test network, skipping.');
|
||||
$this->markTestSkipped('Cannot test network, skipping.');
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue