Skip to content

Commit

Permalink
improve
Browse files Browse the repository at this point in the history
  • Loading branch information
vjik committed Dec 21, 2023
1 parent daa3b24 commit cdcc28a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/Common/Command/AbstractCreateCommandTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -992,7 +992,7 @@ public function down(MigrationBuilder \$b): void
$this->assertEqualsWithoutLE($expectedMigrationCode, $generatedMigrationCode);
}

public function testIncorrectCreatePath(): void
public function testIncorrectNewMigrationPath(): void
{
MigrationHelper::useMigrationsPath($this->container);

Expand All @@ -1008,7 +1008,7 @@ public function testIncorrectCreatePath(): void
$this->assertStringContainsString('Invalid path directory', $output);
}

public function testWithoutCreatePath(): void
public function testWithoutNewMigrationPath(): void
{
MigrationHelper::useMigrationsPath($this->container);

Expand Down Expand Up @@ -1063,7 +1063,7 @@ public function testWithoutNewMigrationNamespace(): void
);
}

public function testWithCreatePathAndNamespace(): void
public function testWithNewMigrationPathAndNamespace(): void
{
MigrationHelper::useMigrationsPath($this->container);
MigrationHelper::useMigrationsNamespace($this->container);
Expand Down

0 comments on commit cdcc28a

Please sign in to comment.