diff options
| author | Greg Roach <greg@subaqua.co.uk> | 2021-03-12 20:29:38 +0000 |
|---|---|---|
| committer | Greg Roach <greg@subaqua.co.uk> | 2021-03-12 20:31:24 +0000 |
| commit | 90288370403060744b506537895bce97ce70617c (patch) | |
| tree | ccbdd77372715f8f71e8fd16b2cbe1032f5ae69e /tests | |
| parent | 22c135fa2a9d8aaf68a70032269940d5314a9818 (diff) | |
| download | webtrees-90288370403060744b506537895bce97ce70617c.tar.gz webtrees-90288370403060744b506537895bce97ce70617c.tar.bz2 webtrees-90288370403060744b506537895bce97ce70617c.zip | |
Rename class to avoid ambiguity
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/app/Elements/GedcomElementTest.php (renamed from tests/app/Elements/GedcomTest.php) | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/app/Elements/GedcomTest.php b/tests/app/Elements/GedcomElementTest.php index 05066dd4c4..422e291713 100644 --- a/tests/app/Elements/GedcomTest.php +++ b/tests/app/Elements/GedcomElementTest.php @@ -23,9 +23,9 @@ namespace Fisharebest\Webtrees\Elements; * Test harness for the class Gedcom * * @covers \Fisharebest\Webtrees\Elements\AbstractElement - * @covers \Fisharebest\Webtrees\Elements\Gedcom + * @covers \Fisharebest\Webtrees\Elements\GedcomElement */ -class GedcomTest extends AbstractElementTest +class GedcomElementTest extends AbstractElementTest { /** * Standard tests for all elements. @@ -34,6 +34,6 @@ class GedcomTest extends AbstractElementTest { parent::setUpBeforeClass(); - self::$element = new Gedcom('label'); + self::$element = new GedcomElement('label'); } } |
