diff options
Diffstat (limited to 'tests/app/Census/CensusColumnMotherBirthPlaceTest.php')
| -rw-r--r-- | tests/app/Census/CensusColumnMotherBirthPlaceTest.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/app/Census/CensusColumnMotherBirthPlaceTest.php b/tests/app/Census/CensusColumnMotherBirthPlaceTest.php index 3fae6e72b4..c6ad42f4bd 100644 --- a/tests/app/Census/CensusColumnMotherBirthPlaceTest.php +++ b/tests/app/Census/CensusColumnMotherBirthPlaceTest.php @@ -69,7 +69,7 @@ class CensusColumnMotherBirthPlaceTest extends \PHPUnit\Framework\TestCase $column = new CensusColumnMotherBirthPlace($census, '', ''); - $this->assertSame('London', $column->generate($individual)); + $this->assertSame('London', $column->generate($individual, $individual)); } /** @@ -92,7 +92,7 @@ class CensusColumnMotherBirthPlaceTest extends \PHPUnit\Framework\TestCase $column = new CensusColumnMotherBirthPlace($census, '', ''); - $this->assertSame('London, England', $column->generate($individual)); + $this->assertSame('London, England', $column->generate($individual, $individual)); } /** @@ -112,7 +112,7 @@ class CensusColumnMotherBirthPlaceTest extends \PHPUnit\Framework\TestCase $column = new CensusColumnMotherBirthPlace($census, '', ''); - $this->assertSame('', $column->generate($individual)); + $this->assertSame('', $column->generate($individual, $individual)); } /** @@ -129,6 +129,6 @@ class CensusColumnMotherBirthPlaceTest extends \PHPUnit\Framework\TestCase $column = new CensusColumnMotherBirthPlace($census, '', ''); - $this->assertSame('', $column->generate($individual)); + $this->assertSame('', $column->generate($individual, $individual)); } } |
