Skip to content

Commit 6fd26a3

Browse files
authoredDec 7, 2024··
Order result (#11757)
This avoids a test flakyness observed when using PostgreSQL in the CI.
1 parent 8ef9253 commit 6fd26a3

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed
 

‎tests/Tests/ORM/Functional/QueryDqlFunctionTest.php

+1
Original file line numberDiff line numberDiff line change
@@ -428,6 +428,7 @@ public function testInArithmeticExpression1(): void
428428
SELECT m, m.name AS m_name
429429
FROM Doctrine\Tests\Models\Company\CompanyManager m
430430
WHERE m.salary IN (800000 / 8, 100000 * 2)
431+
ORDER BY m.name DESC
431432
SQL;
432433

433434
$result = $this->_em->createQuery($dql)->getArrayResult();

0 commit comments

Comments
 (0)
Please sign in to comment.