Browse Source

Giving i18n test table a proper name

Jeremy Harris 9 years ago
parent
commit
f7b37ed48e
1 changed files with 2 additions and 2 deletions
  1. 2 2
      tests/TestCase/TestSuite/TestCaseTest.php

+ 2 - 2
tests/TestCase/TestSuite/TestCaseTest.php

@@ -549,8 +549,8 @@ class TestCaseTest extends TestCase
     {
         Configure::write('App.namespace', 'TestApp');
 
-        $Tags = $this->getMockForModel('I18n', ['doSomething']);
-        $this->assertEquals('custom_i18n_table', $Tags->table());
+        $I18n = $this->getMockForModel('I18n', ['doSomething']);
+        $this->assertEquals('custom_i18n_table', $I18n->table());
 
         $Tags = $this->getMockForModel('Tags', ['doSomething']);
         $this->assertEquals('tags', $Tags->table());