Skip to content
Snippets Groups Projects
Commit 8f96d287 authored by Alex Pott's avatar Alex Pott
Browse files

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

parent 92e613ae
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
type: module
name: Migrate SQL Source test
description: 'Provides a database table and records for SQL import testing.'
name: Migration High Water Test
description: 'Provides test fixtures for testing high water marks.'
package: Testing
core: 8.x
dependencies:
......
<?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;
......
......@@ -5,7 +5,7 @@
/**
* 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
*/
class HighWaterNotJoinableTest extends MigrateSqlSourceTestBase {
......@@ -13,7 +13,7 @@ class HighWaterNotJoinableTest extends MigrateSqlSourceTestBase {
/**
* {@inheritdoc}
*/
public static $modules = ['migrate', 'migrate_drupal', 'migrate_sql_test'];
public static $modules = ['migrate', 'migrate_drupal', 'migrate_high_water_test'];
/**
* {@inheritdoc}
......
......@@ -17,7 +17,7 @@ class HighWaterTest extends MigrateTestBase {
'user',
'node',
'migrate',
'migrate_sql_test',
'migrate_high_water_test',
'field',
];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment