[tests] Fix tests under PHP 5.3 due to another dumb mistake.

Seriously, I am startint to hate PHP 5.3...
This commit is contained in:
Daniele Alessandri
2013-12-01 15:27:42 +01:00
parent d2c001812f
commit bcf92a7548
+6 -6
View File
@@ -518,11 +518,11 @@ class ClientTest extends PredisTestCase
$client = new Client($connection);
$this->assertSame('OK', $client->raw(['SET', 'foo', 'bar']));
$this->assertSame('bar', $client->raw(['GET', 'foo']));
$this->assertSame('OK', $client->raw(array('SET', 'foo', 'bar')));
$this->assertSame('bar', $client->raw(array('GET', 'foo')));
$error = true; // $error is always populated by reference.
$this->assertSame('PONG', $client->raw(['PING'], $error));
$this->assertSame('PONG', $client->raw(array('PING'), $error));
$this->assertFalse($error);
}
@@ -543,8 +543,8 @@ class ClientTest extends PredisTestCase
$client = new Client($connection, array('prefix' => 'predis:'));
$this->assertSame('OK', $client->raw(['SET', 'foo', 'bar']));
$this->assertSame('bar', $client->raw(['GET', 'foo']));
$this->assertSame('OK', $client->raw(array('SET', 'foo', 'bar')));
$this->assertSame('bar', $client->raw(array('GET', 'foo')));
}
/**
@@ -563,7 +563,7 @@ class ClientTest extends PredisTestCase
$client = new Client($connection, array('exceptions' => true));
$this->assertSame($message, $client->raw(['PING'], $error));
$this->assertSame($message, $client->raw(array('PING'), $error));
$this->assertTrue($error);
}