summaryrefslogtreecommitdiff
path: root/tests/app/Census/CensusColumnMotherForeignTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/app/Census/CensusColumnMotherForeignTest.php')
-rw-r--r--tests/app/Census/CensusColumnMotherForeignTest.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/app/Census/CensusColumnMotherForeignTest.php b/tests/app/Census/CensusColumnMotherForeignTest.php
index d21169b138..3354adaf69 100644
--- a/tests/app/Census/CensusColumnMotherForeignTest.php
+++ b/tests/app/Census/CensusColumnMotherForeignTest.php
@@ -66,7 +66,7 @@ class CensusColumnMotherForeignTest extends \PHPUnit\Framework\TestCase
$column = new CensusColumnMotherForeign($census, '', '');
- $this->assertSame('', $column->generate($individual));
+ $this->assertSame('', $column->generate($individual, $individual));
}
/**
@@ -89,7 +89,7 @@ class CensusColumnMotherForeignTest extends \PHPUnit\Framework\TestCase
$column = new CensusColumnMotherForeign($census, '', '');
- $this->assertSame('Y', $column->generate($individual));
+ $this->assertSame('Y', $column->generate($individual, $individual));
}
/**
@@ -109,7 +109,7 @@ class CensusColumnMotherForeignTest extends \PHPUnit\Framework\TestCase
$column = new CensusColumnMotherForeign($census, '', '');
- $this->assertSame('', $column->generate($individual));
+ $this->assertSame('', $column->generate($individual, $individual));
}
/**
@@ -126,6 +126,6 @@ class CensusColumnMotherForeignTest extends \PHPUnit\Framework\TestCase
$column = new CensusColumnMotherForeign($census, '', '');
- $this->assertSame('', $column->generate($individual));
+ $this->assertSame('', $column->generate($individual, $individual));
}
}