瀏覽代碼

[tests] Fix tests on PHP 5.3.

Stupid PHP 5.3.
Daniele Alessandri 11 年之前
父節點
當前提交
5192005862
共有 1 個文件被更改,包括 3 次插入3 次删除
  1. 3 3
      tests/PHPUnit/CommandTestCase.php

+ 3 - 3
tests/PHPUnit/CommandTestCase.php

@@ -41,7 +41,7 @@ abstract class CommandTestCase extends StandardTestCase
      *
      * @return CommandInterface
      */
-    protected function getCommand()
+    public function getCommand()
     {
         $command = $this->getExpectedCommand();
 
@@ -53,7 +53,7 @@ abstract class CommandTestCase extends StandardTestCase
      *
      * @return ServerProfileInterface
      */
-    protected function getProfile()
+    public function getProfile()
     {
         return ServerProfile::get(REDIS_SERVER_VERSION);
     }
@@ -64,7 +64,7 @@ abstract class CommandTestCase extends StandardTestCase
      * @param Boolean $connect Flush selected database before returning the client.
      * @return Client
      */
-    protected function getClient($flushdb = true)
+    public function getClient($flushdb = true)
     {
         $profile = $this->getProfile();