You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: tests/TypesTest.php
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -149,7 +149,7 @@ public function testDoctrineWithMappingDriverChainMissingNamespace(): void
149
149
$type = $this->types->getOutput(Post::class);
150
150
151
151
$config->setMetadataDriverImpl($chain);
152
-
$this->expectExceptionMessage('graphql-doctrine requires GraphQLTests\Doctrine\Blog\Model\Post entity to be configured with a `Doctrine\Common\Persistence\Mapping\Driver\AnnotationDriver`.');
152
+
$this->expectExceptionMessage('graphql-doctrine requires GraphQLTests\Doctrine\Blog\Model\Post entity to be configured with a `Doctrine\Persistence\Mapping\Driver\AnnotationDriver`.');
153
153
$type->getFields();
154
154
}
155
155
@@ -160,7 +160,7 @@ public function testDoctrineWithoutAnnotationDriverMustThrow(): void
160
160
$type = $this->types->getOutput(Post::class);
161
161
162
162
$config->setMetadataDriverImpl(newXmlDriver([]));
163
-
$this->expectExceptionMessage('graphql-doctrine requires Doctrine to be configured with a `Doctrine\Common\Persistence\Mapping\Driver\AnnotationDriver`.');
163
+
$this->expectExceptionMessage('graphql-doctrine requires Doctrine to be configured with a `Doctrine\Persistence\Mapping\Driver\AnnotationDriver`.');
0 commit comments