mirror of
https://github.com/predis/predis.git
synced 2026-08-30 04:02:22 +00:00
[tests] Fix a couple of glitches in our base PHPUnit classes.
This commit is contained in:
@@ -196,7 +196,7 @@ abstract class PredisTestCase extends PHPUnit_Framework_TestCase
|
||||
protected function executeOnProfileVersion($expectedVersion, $operator, $callback)
|
||||
{
|
||||
$profile = $this->getProfile();
|
||||
$comparation = version_compare($profile->getVersion(), $expectedVersion);
|
||||
$comparation = version_compare($version = $profile->getVersion(), $expectedVersion);
|
||||
|
||||
if ($match = eval("return $comparation $operator 0;")) {
|
||||
call_user_func($callback, $this, $version);
|
||||
|
||||
@@ -26,7 +26,7 @@ class RedisCommandConstraint extends PHPUnit_Framework_Constraint
|
||||
{
|
||||
if ($command instanceof CommandInterface) {
|
||||
$this->commandID = strtoupper($command->getId());
|
||||
$this->arguments = $arguments ?: $commant->getArguments();
|
||||
$this->arguments = $arguments ?: $command->getArguments();
|
||||
} else {
|
||||
$this->commandID = strtoupper($command);
|
||||
$this->arguments = $arguments;
|
||||
|
||||
Reference in New Issue
Block a user