Skip to content
This repository has been archived by the owner on Jan 31, 2020. It is now read-only.

Commit

Permalink
Indentation Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
pauloelr committed May 30, 2013
1 parent bef7015 commit 8f8b78f
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions test/GreaterThanTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,9 @@ public function testEqualsMessageVariables()
$this->assertAttributeEquals($validator->getOption('messageVariables'),
'messageVariables', $validator);
}

public function testCorrectInclusiveMessageReturn(){

public function testCorrectInclusiveMessageReturn()
{
$valuesToValidate = array(0, 0.5, 5, 10);

foreach ($valuesToValidate as $value) {
Expand All @@ -111,8 +112,9 @@ public function testCorrectInclusiveMessageReturn(){
$this->assertEquals($message['notGreaterThan'], "The input is not greater than '10'");
}
}

public function testCorrectNotInclusiveMessageReturn(){

public function testCorrectNotInclusiveMessageReturn()
{
$valuesToValidate = array(0, 0.5, 5, 9);

foreach ($valuesToValidate as $value) {
Expand Down

0 comments on commit 8f8b78f

Please sign in to comment.