Skip to content

Commit e34752b

Browse files
committed
Fixing PgSQL related test (order issue)
1 parent d8b675d commit e34752b

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
@@ -2220,7 +2220,7 @@ public function testSubQueryExceptionOnPrimaryKeysWithMultipleColumns(): void
22202220
public function testManyToOneEagerLoading(): void
22212221
{
22222222
$userDao = new UserDao($this->tdbmService);
2223-
$users = $userDao->findAll();
2223+
$users = $userDao->findAll()->withOrder('id asc');
22242224
$countryIds = [];
22252225
foreach ($users as $user) {
22262226
$countryIds[] = $user->getCountry()->getId();

0 commit comments

Comments
 (0)