diff options
| author | Greg Roach <fisharebest@webtrees.net> | 2019-04-17 07:50:10 +0100 |
|---|---|---|
| committer | Greg Roach <fisharebest@webtrees.net> | 2019-04-17 10:59:44 +0100 |
| commit | 74d6dc0ec259c643834b111577684e38e74234c8 (patch) | |
| tree | 8e2a9976638f52f7e477bd0810a7035d0d2c9e1a /tests/app/Census/CensusOfEngland1861Test.php | |
| parent | e83c38cb0de35e6ed4b3ce544b07c718bff741ad (diff) | |
| download | webtrees-74d6dc0ec259c643834b111577684e38e74234c8.tar.gz webtrees-74d6dc0ec259c643834b111577684e38e74234c8.tar.bz2 webtrees-74d6dc0ec259c643834b111577684e38e74234c8.zip | |
CodeStyle
Diffstat (limited to 'tests/app/Census/CensusOfEngland1861Test.php')
| -rw-r--r-- | tests/app/Census/CensusOfEngland1861Test.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/app/Census/CensusOfEngland1861Test.php b/tests/app/Census/CensusOfEngland1861Test.php index a6b09752b3..3e2da00a6d 100644 --- a/tests/app/Census/CensusOfEngland1861Test.php +++ b/tests/app/Census/CensusOfEngland1861Test.php @@ -31,7 +31,7 @@ class CensusOfEngland1861Test extends \Fisharebest\Webtrees\TestCase */ public function testPlaceAndDate(): void { - $census = new CensusOfEngland1861; + $census = new CensusOfEngland1861(); $this->assertSame('England', $census->censusPlace()); $this->assertSame('07 APR 1861', $census->censusDate()); @@ -47,7 +47,7 @@ class CensusOfEngland1861Test extends \Fisharebest\Webtrees\TestCase */ public function testColumns(): void { - $census = new CensusOfEngland1861; + $census = new CensusOfEngland1861(); $columns = $census->columns(); $this->assertCount(8, $columns); |
