Skip to content

Commit a481578

Browse files
committed
Inheritance - FK save: Fix lowest phpunit
1 parent b32a138 commit a481578

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/TDBMDaoGeneratorTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2219,7 +2219,7 @@ public function testInheritanceFkWithDifferentPkName(): void
22192219
$inheritanceAgencyDao = new InheritanceAgencyDao($this->tdbmService);
22202220
$society = new InheritanceSocietyBean();
22212221
$inheritanceSocietyDao->save($society);
2222-
$this->assertIsInt($society->getId());
2222+
$this->assertNotNull($society->getId());
22232223
$agency = new InheritanceAgencyBean($society);
22242224
$inheritanceAgencyDao->save($agency);
22252225
}

0 commit comments

Comments
 (0)