diff options
| author | Greg Roach <greg@subaqua.co.uk> | 2024-11-11 21:46:06 +0000 |
|---|---|---|
| committer | Greg Roach <greg@subaqua.co.uk> | 2024-11-11 21:53:45 +0000 |
| commit | c0f994788d49129732c9d6b4af375ff7d752abd9 (patch) | |
| tree | 5f394c3a57d8c8179add02a9538813eaa7778977 /tests/app/Module | |
| parent | c514b6cef6b96adaca53c2cf3a39757905152dba (diff) | |
| download | webtrees-c0f994788d49129732c9d6b4af375ff7d752abd9.tar.gz webtrees-c0f994788d49129732c9d6b4af375ff7d752abd9.tar.bz2 webtrees-c0f994788d49129732c9d6b4af375ff7d752abd9.zip | |
Update PHP dependencies
Diffstat (limited to 'tests/app/Module')
| -rw-r--r-- | tests/app/Module/AustrianHistoricEventsTest.php | 2 | ||||
| -rw-r--r-- | tests/app/Module/AustrianPresidentsTest.php | 2 | ||||
| -rw-r--r-- | tests/app/Module/BritishMonarchsTest.php | 2 | ||||
| -rw-r--r-- | tests/app/Module/BritishPrimeMinistersTest.php | 2 | ||||
| -rw-r--r-- | tests/app/Module/BritishSocialHistoryTest.php | 2 | ||||
| -rw-r--r-- | tests/app/Module/CzechMonarchsAndPresidentsTest.php | 2 | ||||
| -rw-r--r-- | tests/app/Module/DutchMonarchsTest.php | 2 | ||||
| -rw-r--r-- | tests/app/Module/DutchPrimeMinistersTest.php | 2 | ||||
| -rw-r--r-- | tests/app/Module/FrenchHistoryTest.php | 2 | ||||
| -rw-r--r-- | tests/app/Module/LowCountriesRulersTest.php | 2 | ||||
| -rw-r--r-- | tests/app/Module/NewZealandPrimeMinistersTest.php | 2 | ||||
| -rw-r--r-- | tests/app/Module/USPresidentsTest.php | 2 |
12 files changed, 12 insertions, 12 deletions
diff --git a/tests/app/Module/AustrianHistoricEventsTest.php b/tests/app/Module/AustrianHistoricEventsTest.php index ee8d9a333c..fb13ab8102 100644 --- a/tests/app/Module/AustrianHistoricEventsTest.php +++ b/tests/app/Module/AustrianHistoricEventsTest.php @@ -35,7 +35,7 @@ class AustrianHistoricEventsTest extends TestCase foreach ($module->historicEventsAll(language_tag: 'de') as $gedcom) { $fact = new Fact(gedcom: $gedcom, parent: $individual, id: 'test'); - self::assertTrue(condition: $fact->date()->isOK(), message: 'No date found in: ' . $gedcom); + self::assertTrue($fact->date()->isOK(), 'No date found in: ' . $gedcom); } } } diff --git a/tests/app/Module/AustrianPresidentsTest.php b/tests/app/Module/AustrianPresidentsTest.php index 4c1b96e894..08201b0091 100644 --- a/tests/app/Module/AustrianPresidentsTest.php +++ b/tests/app/Module/AustrianPresidentsTest.php @@ -35,7 +35,7 @@ class AustrianPresidentsTest extends TestCase foreach ($module->historicEventsAll(language_tag: 'de') as $gedcom) { $fact = new Fact(gedcom: $gedcom, parent: $individual, id: 'test'); - self::assertTrue(condition: $fact->date()->isOK(), message: 'No date found in: ' . $gedcom); + self::assertTrue($fact->date()->isOK(), 'No date found in: ' . $gedcom); } } } diff --git a/tests/app/Module/BritishMonarchsTest.php b/tests/app/Module/BritishMonarchsTest.php index 99aec5e635..ddb42bc6cb 100644 --- a/tests/app/Module/BritishMonarchsTest.php +++ b/tests/app/Module/BritishMonarchsTest.php @@ -35,7 +35,7 @@ class BritishMonarchsTest extends TestCase foreach ($module->historicEventsAll(language_tag: 'en-GB') as $gedcom) { $fact = new Fact(gedcom: $gedcom, parent: $individual, id: 'test'); - self::assertTrue(condition: $fact->date()->isOK(), message: 'No date found in: ' . $gedcom); + self::assertTrue($fact->date()->isOK(), 'No date found in: ' . $gedcom); } } } diff --git a/tests/app/Module/BritishPrimeMinistersTest.php b/tests/app/Module/BritishPrimeMinistersTest.php index d7adce8fe9..df29b7a088 100644 --- a/tests/app/Module/BritishPrimeMinistersTest.php +++ b/tests/app/Module/BritishPrimeMinistersTest.php @@ -35,7 +35,7 @@ class BritishPrimeMinistersTest extends TestCase foreach ($module->historicEventsAll(language_tag: 'en-GB') as $gedcom) { $fact = new Fact(gedcom: $gedcom, parent: $individual, id: 'test'); - self::assertTrue(condition: $fact->date()->isOK(), message: 'No date found in: ' . $gedcom); + self::assertTrue($fact->date()->isOK(), 'No date found in: ' . $gedcom); } } } diff --git a/tests/app/Module/BritishSocialHistoryTest.php b/tests/app/Module/BritishSocialHistoryTest.php index f3b14bcfac..90e6e413fe 100644 --- a/tests/app/Module/BritishSocialHistoryTest.php +++ b/tests/app/Module/BritishSocialHistoryTest.php @@ -35,7 +35,7 @@ class BritishSocialHistoryTest extends TestCase foreach ($module->historicEventsAll(language_tag: 'en-GB') as $gedcom) { $fact = new Fact(gedcom: $gedcom, parent: $individual, id: 'test'); - self::assertTrue(condition: $fact->date()->isOK(), message: 'No date found in: ' . $gedcom); + self::assertTrue($fact->date()->isOK(), 'No date found in: ' . $gedcom); } } } diff --git a/tests/app/Module/CzechMonarchsAndPresidentsTest.php b/tests/app/Module/CzechMonarchsAndPresidentsTest.php index eb4d6b8145..c092951ae0 100644 --- a/tests/app/Module/CzechMonarchsAndPresidentsTest.php +++ b/tests/app/Module/CzechMonarchsAndPresidentsTest.php @@ -35,7 +35,7 @@ class CzechMonarchsAndPresidentsTest extends TestCase foreach ($module->historicEventsAll(language_tag: 'cs') as $gedcom) { $fact = new Fact(gedcom: $gedcom, parent: $individual, id: 'test'); - self::assertTrue(condition: $fact->date()->isOK(), message: 'No date found in: ' . $gedcom); + self::assertTrue($fact->date()->isOK(), 'No date found in: ' . $gedcom); } } } diff --git a/tests/app/Module/DutchMonarchsTest.php b/tests/app/Module/DutchMonarchsTest.php index dec9e8a226..d166b081d4 100644 --- a/tests/app/Module/DutchMonarchsTest.php +++ b/tests/app/Module/DutchMonarchsTest.php @@ -35,7 +35,7 @@ class DutchMonarchsTest extends TestCase foreach ($module->historicEventsAll(language_tag: 'nl') as $gedcom) { $fact = new Fact(gedcom: $gedcom, parent: $individual, id: 'test'); - self::assertTrue(condition: $fact->date()->isOK(), message: 'No date found in: ' . $gedcom); + self::assertTrue($fact->date()->isOK(), 'No date found in: ' . $gedcom); } } } diff --git a/tests/app/Module/DutchPrimeMinistersTest.php b/tests/app/Module/DutchPrimeMinistersTest.php index c32aa5af4f..9d06417e48 100644 --- a/tests/app/Module/DutchPrimeMinistersTest.php +++ b/tests/app/Module/DutchPrimeMinistersTest.php @@ -35,7 +35,7 @@ class DutchPrimeMinistersTest extends TestCase foreach ($module->historicEventsAll(language_tag: 'nl') as $gedcom) { $fact = new Fact(gedcom: $gedcom, parent: $individual, id: 'test'); - self::assertTrue(condition: $fact->date()->isOK(), message: 'No date found in: ' . $gedcom); + self::assertTrue($fact->date()->isOK(), 'No date found in: ' . $gedcom); } } } diff --git a/tests/app/Module/FrenchHistoryTest.php b/tests/app/Module/FrenchHistoryTest.php index 376c19e900..e821062c3b 100644 --- a/tests/app/Module/FrenchHistoryTest.php +++ b/tests/app/Module/FrenchHistoryTest.php @@ -35,7 +35,7 @@ class FrenchHistoryTest extends TestCase foreach ($module->historicEventsAll(language_tag: 'fr') as $gedcom) { $fact = new Fact(gedcom: $gedcom, parent: $individual, id: 'test'); - self::assertTrue(condition: $fact->date()->isOK(), message: 'No date found in: ' . $gedcom); + self::assertTrue($fact->date()->isOK(), 'No date found in: ' . $gedcom); } } } diff --git a/tests/app/Module/LowCountriesRulersTest.php b/tests/app/Module/LowCountriesRulersTest.php index bedc584194..1e40c7f653 100644 --- a/tests/app/Module/LowCountriesRulersTest.php +++ b/tests/app/Module/LowCountriesRulersTest.php @@ -35,7 +35,7 @@ class LowCountriesRulersTest extends TestCase foreach ($module->historicEventsAll(language_tag: 'nl') as $gedcom) { $fact = new Fact(gedcom: $gedcom, parent: $individual, id: 'test'); - self::assertTrue(condition: $fact->date()->isOK(), message: 'No date found in: ' . $gedcom); + self::assertTrue($fact->date()->isOK(), 'No date found in: ' . $gedcom); } } } diff --git a/tests/app/Module/NewZealandPrimeMinistersTest.php b/tests/app/Module/NewZealandPrimeMinistersTest.php index dc8d0c2474..42de6d1d40 100644 --- a/tests/app/Module/NewZealandPrimeMinistersTest.php +++ b/tests/app/Module/NewZealandPrimeMinistersTest.php @@ -35,7 +35,7 @@ class NewZealandPrimeMinistersTest extends TestCase foreach ($module->historicEventsAll(language_tag: 'en-AU') as $gedcom) { $fact = new Fact(gedcom: $gedcom, parent: $individual, id: 'test'); - self::assertTrue(condition: $fact->date()->isOK(), message: 'No date found in: ' . $gedcom); + self::assertTrue($fact->date()->isOK(), 'No date found in: ' . $gedcom); } } } diff --git a/tests/app/Module/USPresidentsTest.php b/tests/app/Module/USPresidentsTest.php index e00b5cc6ba..6b47953b30 100644 --- a/tests/app/Module/USPresidentsTest.php +++ b/tests/app/Module/USPresidentsTest.php @@ -35,7 +35,7 @@ class USPresidentsTest extends TestCase foreach ($module->historicEventsAll(language_tag: 'en-US') as $gedcom) { $fact = new Fact(gedcom: $gedcom, parent: $individual, id: 'test'); - self::assertTrue(condition: $fact->date()->isOK(), message: 'No date found in: ' . $gedcom); + self::assertTrue($fact->date()->isOK(), 'No date found in: ' . $gedcom); } } } |
