Skip to content

Commit

Permalink
More namespace fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
lorenzo committed Feb 13, 2014
1 parent be2e5f0 commit 7ace5c3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/TestCase/Network/SocketTest.php
Expand Up @@ -159,7 +159,7 @@ public function testSocketWriting() {
try {
$request = "GET / HTTP/1.1\r\nConnection: close\r\n\r\n";
$this->assertTrue((bool)$this->Socket->write($request));
} catch (SocketException $e) {
} catch (\Cake\Error\SocketException $e) {
$this->markTestSkipped('Cannot test network, skipping.');
}
}
Expand Down Expand Up @@ -237,7 +237,7 @@ public function testReset() {
/**
* testEncrypt
*
* @expectedException Cake\Error\SocketException
* @expectedException \Cake\Error\SocketException
* @return void
*/
public function testEnableCryptoSocketExceptionNoSsl() {
Expand Down Expand Up @@ -317,7 +317,7 @@ public function testEnableCrypto() {
/**
* testEnableCryptoExceptionEnableTwice
*
* @expectedException Cake\Error\SocketException
* @expectedException \Cake\Error\SocketException
* @return void
*/
public function testEnableCryptoExceptionEnableTwice() {
Expand All @@ -331,7 +331,7 @@ public function testEnableCryptoExceptionEnableTwice() {
/**
* testEnableCryptoExceptionDisableTwice
*
* @expectedException Cake\Error\SocketException
* @expectedException \Cake\Error\SocketException
* @return void
*/
public function testEnableCryptoExceptionDisableTwice() {
Expand Down

0 comments on commit 7ace5c3

Please sign in to comment.