Skip to content

Commit

Permalink
Fix mistake.
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed Dec 15, 2014
1 parent 3bf3ea2 commit 05ee1e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/TestCase/Form/FormTest.php
Expand Up @@ -51,7 +51,7 @@ public function testValidator() {
$this->assertInstanceOf('Cake\Validation\Validator', $validator);
$this->assertSame($validator, $form->validator(), 'Same instance each time');

$schema = $this->getMock('Cake\Validation\Validator');
$validator = $this->getMock('Cake\Validation\Validator');
$this->assertSame($validator, $form->validator($validator));
$this->assertSame($validator, $form->validator());
}
Expand Down

0 comments on commit 05ee1e6

Please sign in to comment.