diff --git a/core/modules/action/tests/src/Kernel/Migrate/d6/MigrateActionConfigsTest.php b/core/modules/action/tests/src/Kernel/Migrate/d6/MigrateActionConfigsTest.php index bd87724..934a689 100644 --- a/core/modules/action/tests/src/Kernel/Migrate/d6/MigrateActionConfigsTest.php +++ b/core/modules/action/tests/src/Kernel/Migrate/d6/MigrateActionConfigsTest.php @@ -32,7 +32,7 @@ protected function setUp() { */ public function testActionSettings() { $config = $this->config('action.settings'); - $this->assertIdentical(35, $config->get('recursion_limit')); + $this->assertSame(35, $config->get('recursion_limit')); $this->assertConfigSchema(\Drupal::service('config.typed'), 'action.settings', $config->get()); } diff --git a/core/modules/action/tests/src/Kernel/Migrate/d6/MigrateActionsTest.php b/core/modules/action/tests/src/Kernel/Migrate/d6/MigrateActionsTest.php index 1737715..fff91bb 100644 --- a/core/modules/action/tests/src/Kernel/Migrate/d6/MigrateActionsTest.php +++ b/core/modules/action/tests/src/Kernel/Migrate/d6/MigrateActionsTest.php @@ -63,10 +63,10 @@ protected function assertEntity($id, $label, $type, $configuration) { $this->assertTrue($action instanceof Action); /** @var \Drupal\system\Entity\Action $action */ - $this->assertIdentical($id, $action->id()); - $this->assertIdentical($label, $action->label()); - $this->assertIdentical($type, $action->getType()); - $this->assertIdentical($configuration, $action->get('configuration')); + $this->assertSame($id, $action->id()); + $this->assertSame($label, $action->label()); + $this->assertSame($type, $action->getType()); + $this->assertSame($configuration, $action->get('configuration')); } } diff --git a/core/modules/action/tests/src/Kernel/Migrate/d7/MigrateActionsTest.php b/core/modules/action/tests/src/Kernel/Migrate/d7/MigrateActionsTest.php index 1601449..30de0c3 100644 --- a/core/modules/action/tests/src/Kernel/Migrate/d7/MigrateActionsTest.php +++ b/core/modules/action/tests/src/Kernel/Migrate/d7/MigrateActionsTest.php @@ -63,10 +63,10 @@ protected function assertEntity($id, $label, $type, $configuration) { $this->assertTrue($action instanceof Action); /** @var \Drupal\system\Entity\Action $action */ - $this->assertIdentical($id, $action->id()); - $this->assertIdentical($label, $action->label()); - $this->assertIdentical($type, $action->getType()); - $this->assertIdentical($configuration, $action->get('configuration')); + $this->assertSame($id, $action->id()); + $this->assertSame($label, $action->label()); + $this->assertSame($type, $action->getType()); + $this->assertSame($configuration, $action->get('configuration')); } } diff --git a/core/modules/aggregator/tests/src/Kernel/Migrate/d6/MigrateAggregatorConfigsTest.php b/core/modules/aggregator/tests/src/Kernel/Migrate/d6/MigrateAggregatorConfigsTest.php index 280a103..79c250b 100644 --- a/core/modules/aggregator/tests/src/Kernel/Migrate/d6/MigrateAggregatorConfigsTest.php +++ b/core/modules/aggregator/tests/src/Kernel/Migrate/d6/MigrateAggregatorConfigsTest.php @@ -32,13 +32,13 @@ protected function setUp() { */ public function testAggregatorSettings() { $config = $this->config('aggregator.settings'); - $this->assertIdentical('aggregator', $config->get('fetcher')); - $this->assertIdentical('aggregator', $config->get('parser')); - $this->assertIdentical(['aggregator'], $config->get('processors')); - $this->assertIdentical(600, $config->get('items.teaser_length')); - $this->assertIdentical('