Skip to content

Commit f51198b

Browse files
committed
test fix for PGSQL + CS
1 parent 558dcab commit f51198b

File tree

3 files changed

+1
-5
lines changed

3 files changed

+1
-5
lines changed

tests/QueryFactory/SmartEagerLoad/ManyToOneDataLoaderTest.php

-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88

99
class ManyToOneDataLoaderTest extends TestCase
1010
{
11-
1211
public function testGet()
1312
{
1413
$connection = $this->createMock(Connection::class);

tests/QueryFactory/SmartEagerLoad/Query/StaticPartialQueryTest.php

-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010

1111
class StaticPartialQueryTest extends TestCase
1212
{
13-
1413
public function testRegisterDataLoader()
1514
{
1615
$query = new StaticPartialQuery('FROM users', ['foo'=>42], ['users'], $this->createMock(StorageNode::class), new MagicQuery());

tests/TDBMDaoGeneratorTest.php

+1-3
Original file line numberDiff line numberDiff line change
@@ -2250,9 +2250,7 @@ public function testLazyLoadBadIdException(): void
22502250
$lazyBean = $countryDao->getById(-1, true);
22512251

22522252
$this->expectException(NoBeanFoundException::class);
2253-
$this->expectExceptionMessage("Could not retrieve object from table \"country\" using filter \"(`id` = :tdbmparam1)\" with data \"array (
2254-
'tdbmparam1' => -1,
2255-
)\".");
2253+
$this->expectExceptionMessage("Could not retrieve object from table");
22562254
$lazyBean->getLabel();
22572255
}
22582256
}

0 commit comments

Comments
 (0)