Skip to content

Commit

Permalink
Update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Tigrov committed Nov 28, 2024
1 parent f56415b commit f0621d7
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions tests/Common/Service/AbstractMigrationServiceTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ public function testGetNamespacesFromPathForNoHavingNamespacePath(): void
$migrationService = $this->container->get(MigrationService::class);

$getNamespaceFromPath = new ReflectionMethod($migrationService, 'getNamespacesFromPath');
$getNamespaceFromPath->setAccessible(true);

// No having namespace path
$path = dirname(__DIR__, 3) . '/config';
Expand All @@ -75,7 +74,6 @@ public function testGetNamespacesFromPathForNoExistsDirectory(): void
$migrationService = $this->container->get(MigrationService::class);

$getNamespaceFromPath = new ReflectionMethod($migrationService, 'getNamespacesFromPath');
$getNamespaceFromPath->setAccessible(true);

// There is a path to the namespace, but the directory does not exist
$path = dirname(__DIR__, 2) . '/non-exists-directory';
Expand All @@ -92,7 +90,6 @@ public function testGetNamespacesFromPathForLongestPath(): void
$migrationService = $this->container->get(MigrationService::class);

$getNamespaceFromPath = new ReflectionMethod($migrationService, 'getNamespacesFromPath');
$getNamespaceFromPath->setAccessible(true);

/**
* Path corresponding to three namespaces:
Expand Down

0 comments on commit f0621d7

Please sign in to comment.