We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1496d43 commit 1f71d41Copy full SHA for 1f71d41
1 file changed
tests/system/Database/Migrations/MigrationRunnerTest.php
@@ -192,7 +192,7 @@ public function testGetMigrationNameDashes()
192
193
$method = $this->getPrivateMethodInvoker($runner, 'getMigrationName');
194
195
- $this->assertSame('Foo', $method('2019-08-06-235100_Foo'));
+ $this->assertSame('Foo_bar', $method('2019-08-06-235100_Foo_bar'));
196
}
197
198
public function testGetMigrationNameUnderscores()
@@ -201,7 +201,7 @@ public function testGetMigrationNameUnderscores()
201
202
203
204
- $this->assertSame('Foo', $method('2019_08_06_235100_Foo'));
+ $this->assertSame('Foo_bar', $method('2019_08_06_235100_Foo_bar'));
205
206
207
public function testSetSilentStoresValue()
0 commit comments