Browse Source

Provide better name for test method

testMagicUppercase()? I don't know where I got that one from...
Just changed the method name to something more describring the
actual test.
Jurian Sluiman 13 years ago
parent
commit
49355b0881
1 changed files with 1 additions and 1 deletions
  1. 1 1
      test/RedisCommandsTest.php

+ 1 - 1
test/RedisCommandsTest.php

@@ -2076,7 +2076,7 @@ class RedisCommandTestSuite extends PHPUnit_Framework_TestCase {
         $this->assertGreaterThan(0, $this->redis->lastsave());
     }
 
-    function testMagicUppercase() {
+    function testUppercaseCommands() {
         $uppercase = $this->redis->getProfile()->supportsCommand('INFO');
         $lowercase = $this->redis->getProfile()->supportsCommand('info');
         $this->assertEquals($uppercase, $lowercase);