23
23
use Config \Services ;
24
24
use org \bovigo \vfs \vfsStream ;
25
25
use org \bovigo \vfs \vfsStreamDirectory ;
26
+ use Tests \Support \MigrationTestMigrations \Database \Migrations \Migration_another_migration ;
27
+ use Tests \Support \MigrationTestMigrations \Database \Migrations \Migration_some_migration ;
26
28
27
29
/**
28
30
* @group DatabaseLive
@@ -258,7 +260,7 @@ public function testFindMigrationsSuccessTimestamp(): void
258
260
'version ' => '2018-01-24-102301 ' ,
259
261
'name ' => 'Some_migration ' ,
260
262
'path ' => realpath (TESTPATH . '_support/MigrationTestMigrations/Database/Migrations/2018-01-24-102301_Some_migration.php ' ),
261
- 'class ' => ' Tests\Support\MigrationTestMigrations\Database\Migrations\ Migration_some_migration' ,
263
+ 'class ' => Migration_some_migration::class ,
262
264
'namespace ' => 'Tests\Support\MigrationTestMigrations ' ,
263
265
];
264
266
$ mig1 ->uid = $ runner ->getObjectUid ($ mig1 );
@@ -267,7 +269,7 @@ public function testFindMigrationsSuccessTimestamp(): void
267
269
'version ' => '2018-01-24-102302 ' ,
268
270
'name ' => 'Another_migration ' ,
269
271
'path ' => realpath (TESTPATH . '_support/MigrationTestMigrations/Database/Migrations/2018-01-24-102302_Another_migration.php ' ),
270
- 'class ' => ' Tests\Support\MigrationTestMigrations\Database\Migrations\ Migration_another_migration' ,
272
+ 'class ' => Migration_another_migration::class ,
271
273
'namespace ' => 'Tests\Support\MigrationTestMigrations ' ,
272
274
'uid ' => '20180124102302Tests\Support\MigrationTestMigrations\Database\Migrations\Migration_another_migration ' ,
273
275
];
0 commit comments