Issue #2869881 by sahilsharma011, quietone: Misnamed migrate test module

8.4.x
Alex Pott 2017-04-19 21:28:31 +01:00
parent 92e613aefa
commit 8f96d287f2
5 changed files with 11 additions and 11 deletions

View File

@ -0,0 +1,7 @@
type: module
name: Migration High Water Test
description: 'Provides test fixtures for testing high water marks.'
package: Testing
core: 8.x
dependencies:
- migrate

View File

@ -1,7 +0,0 @@
type: module
name: Migrate SQL Source test
description: 'Provides a database table and records for SQL import testing.'
package: Testing
core: 8.x
dependencies:
- migrate

View File

@ -1,6 +1,6 @@
<?php <?php
namespace Drupal\migrate_sql_test\Plugin\migrate\source; namespace Drupal\migrate_high_water_test\Plugin\migrate\source;
use Drupal\migrate\Plugin\migrate\source\SqlBase; use Drupal\migrate\Plugin\migrate\source\SqlBase;

View File

@ -5,7 +5,7 @@ namespace Drupal\Tests\migrate\Kernel;
/** /**
* Tests the high water handling. * Tests the high water handling.
* *
* @covers \Drupal\migrate_sql_test\Plugin\migrate\source\HighWaterTest * @covers \Drupal\migrate_high_water_test\Plugin\migrate\source\HighWaterTest
* @group migrate * @group migrate
*/ */
class HighWaterNotJoinableTest extends MigrateSqlSourceTestBase { class HighWaterNotJoinableTest extends MigrateSqlSourceTestBase {
@ -13,7 +13,7 @@ class HighWaterNotJoinableTest extends MigrateSqlSourceTestBase {
/** /**
* {@inheritdoc} * {@inheritdoc}
*/ */
public static $modules = ['migrate', 'migrate_drupal', 'migrate_sql_test']; public static $modules = ['migrate', 'migrate_drupal', 'migrate_high_water_test'];
/** /**
* {@inheritdoc} * {@inheritdoc}

View File

@ -17,7 +17,7 @@ class HighWaterTest extends MigrateTestBase {
'user', 'user',
'node', 'node',
'migrate', 'migrate',
'migrate_sql_test', 'migrate_high_water_test',
'field', 'field',
]; ];