Browse Source

Adding test for EntityContext::isPrimaryKey

Jose Lorenzo Rodriguez 12 years ago
parent
commit
474abfdfc0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/TestCase/View/Form/EntityContextTest.php

+ 1 - 1
tests/TestCase/View/Form/EntityContextTest.php

@@ -83,7 +83,7 @@ class EntityContextTest extends TestCase {
 		$this->assertTrue($context->isPrimaryKey('comments.0.id'));
 		$this->assertTrue($context->isPrimaryKey('1.comments.0.id'));
 		$this->assertFalse($context->isPrimaryKey('1.comments.0.comment'));
-		$this->assertFalse($context->isPrimaryKey('1.comments.0.comment'));
+		$this->assertFalse($context->isPrimaryKey('Articles.1.comments.0.comment'));
 	}
 
 /**