Skip to content

Commit

Permalink
fixing a couple CS issues
Browse files Browse the repository at this point in the history
  • Loading branch information
lorenzo committed Jul 27, 2014
1 parent 456474c commit 9f2503d
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion tests/TestCase/ORM/EntityTest.php
Expand Up @@ -191,7 +191,6 @@ public function testGetCustomGetters() {
$this->assertEquals('Dr. Jones', $entity->get('name'));
}


/**
* Test magic property setting with no custom setter
*
Expand Down
1 change: 0 additions & 1 deletion tests/TestCase/ORM/TableTest.php
Expand Up @@ -2154,7 +2154,6 @@ public function testSaveWithDifferentValidatorAndAssociations() {
$this->assertFalse($table->save($entity, ['validate' => 'custom']), 'default was not used');
$this->assertNotEmpty($entity->author->errors('thing'));

$validator3 = (new Validator)->validatePresence('thing');
$table->ArticlesTags->validator('default', $validator2);
unset($entity->author);
$this->assertFalse($table->save($entity, ['validate' => 'custom']), 'default was not used');
Expand Down

0 comments on commit 9f2503d

Please sign in to comment.