diff --git a/tests/QueryFactory/SmartEagerLoad/ManyToOneDataLoaderTest.php b/tests/QueryFactory/SmartEagerLoad/ManyToOneDataLoaderTest.php index 9fd80a55..60cdc447 100644 --- a/tests/QueryFactory/SmartEagerLoad/ManyToOneDataLoaderTest.php +++ b/tests/QueryFactory/SmartEagerLoad/ManyToOneDataLoaderTest.php @@ -8,7 +8,6 @@ class ManyToOneDataLoaderTest extends TestCase { - public function testGet() { $connection = $this->createMock(Connection::class); diff --git a/tests/QueryFactory/SmartEagerLoad/Query/StaticPartialQueryTest.php b/tests/QueryFactory/SmartEagerLoad/Query/StaticPartialQueryTest.php index 4e7ee9e8..cbdbaeb6 100644 --- a/tests/QueryFactory/SmartEagerLoad/Query/StaticPartialQueryTest.php +++ b/tests/QueryFactory/SmartEagerLoad/Query/StaticPartialQueryTest.php @@ -10,7 +10,6 @@ class StaticPartialQueryTest extends TestCase { - public function testRegisterDataLoader() { $query = new StaticPartialQuery('FROM users', ['foo'=>42], ['users'], $this->createMock(StorageNode::class), new MagicQuery()); diff --git a/tests/TDBMDaoGeneratorTest.php b/tests/TDBMDaoGeneratorTest.php index 95acd185..6bae87b5 100644 --- a/tests/TDBMDaoGeneratorTest.php +++ b/tests/TDBMDaoGeneratorTest.php @@ -2250,9 +2250,7 @@ public function testLazyLoadBadIdException(): void $lazyBean = $countryDao->getById(-1, true); $this->expectException(NoBeanFoundException::class); - $this->expectExceptionMessage("Could not retrieve object from table \"country\" using filter \"(`id` = :tdbmparam1)\" with data \"array ( - 'tdbmparam1' => -1, -)\"."); + $this->expectExceptionMessage("Could not retrieve object from table"); $lazyBean->getLabel(); } }