We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8bcde0 commit de13f33Copy full SHA for de13f33
tests/Gedmo/Tree/NestedTreeRootTest.php
@@ -330,7 +330,7 @@ public function testTreeWithRootPointingAtAnotherTable()
330
{
331
// depopulate, i don't want the other stuff in db
332
/** @var NestedTreeRepository $repo */
333
- $repo = $this->em->getRepository(ForeignRootCategory::class);
+ $repo = $this->em->getRepository("Tree\\Fixture\\ForeignRootCategory");
334
$all = $repo->findAll();
335
foreach ($all as $one) {
336
$this->em->remove($one);
@@ -495,7 +495,7 @@ protected function getUsedEntityFixtures()
495
496
return array(
497
self::CATEGORY,
498
- ForeignRootCategory::class,
+ "Tree\\Fixture\\ForeignRootCategory",
499
);
500
}
501
0 commit comments