Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
removed duplicate test case
```$this->assertFalse(Validation::money('text'));```
is now tested only once
  • Loading branch information
spiliot committed Apr 28, 2013
1 parent 2d7f6fc commit dbe90ca
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion lib/Cake/Test/Case/Utility/ValidationTest.php
Expand Up @@ -1965,7 +1965,6 @@ public function testMoney() {
$this->assertTrue(Validation::money('100.111,1'));
$this->assertTrue(Validation::money('100.111,11'));
$this->assertFalse(Validation::money('100.111,111'));
$this->assertFalse(Validation::money('text'));

$this->assertTrue(Validation::money('$100'));
$this->assertTrue(Validation::money('$100.11'));
Expand Down

0 comments on commit dbe90ca

Please sign in to comment.