Преглед на файлове

Test suite: tiny fix in a test for LINSERT.

Daniele Alessandri преди 14 години
родител
ревизия
02d7400d1f
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      test/RedisCommandsTest.php

+ 1 - 1
test/RedisCommandsTest.php

@@ -845,7 +845,7 @@ class RedisCommandTestSuite extends PHPUnit_Framework_TestCase {
 
         RC::testForServerException($this, RC::EXCEPTION_WRONG_TYPE, function($test) {
             $test->redis->set('foo', 'bar');
-            $test->redis->lset('foo', 0, 0);
+            $test->redis->linsert('foo', 0, 0);
         });
     }