Skip to content

Commit b6b0505

Browse files
committed
(test assertion order)
1 parent 06e0faa commit b6b0505

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/unit/org/nameapi/ontology/input/entities/person/age/AgeInfoFactoryTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ class AgeInfoFactoryTest extends \PHPUnit_Framework_TestCase {
88

99
public function testDate() {
1010
$ageInfo = AgeInfoFactory::forDate(1917, 5, 29);
11-
$this->assertEquals($ageInfo->getBirthDay(), 29);
12-
$this->assertEquals($ageInfo->getBirthMonth(), 5);
13-
$this->assertEquals($ageInfo->getBirthYear(), 1917);
11+
$this->assertEquals(29, $ageInfo->getBirthDay());
12+
$this->assertEquals(5, $ageInfo->getBirthMonth());
13+
$this->assertEquals(1917, $ageInfo->getBirthYear());
1414
}
1515

1616
}

0 commit comments

Comments
 (0)