X-Git-Url: http://www.aleph1.co.uk/gitweb/?a=blobdiff_plain;f=web%2Fcore%2Ftests%2FDrupal%2FKernelTests%2FCore%2FConfig%2FConfigImportRecreateTest.php;h=c69f9febb4d4c38a90bf15283136facd0b047046;hb=9917807b03b64faf00f6a1f29dcb6eafc454efa5;hp=0523ee85bf43aa4f7a4f528d763fe944b4324e40;hpb=a2bd1bf0c2c1f1a17d188f4dc0726a45494cefae;p=yaffs-website diff --git a/web/core/tests/Drupal/KernelTests/Core/Config/ConfigImportRecreateTest.php b/web/core/tests/Drupal/KernelTests/Core/Config/ConfigImportRecreateTest.php index 0523ee85b..c69f9febb 100644 --- a/web/core/tests/Drupal/KernelTests/Core/Config/ConfigImportRecreateTest.php +++ b/web/core/tests/Drupal/KernelTests/Core/Config/ConfigImportRecreateTest.php @@ -92,7 +92,7 @@ class ConfigImportRecreateTest extends KernelTestBase { $this->assertEqual(5, count($creates), 'There are 5 configuration items to create.'); $this->assertEqual(5, count($deletes), 'There are 5 configuration items to delete.'); $this->assertEqual(0, count($this->configImporter->getUnprocessedConfiguration('update')), 'There are no configuration items to update.'); - $this->assertIdentical($creates, array_reverse($deletes), 'Deletes and creates contain the same configuration names in opposite orders due to dependencies.'); + $this->assertSame($creates, array_reverse($deletes), 'Deletes and creates contain the same configuration names in opposite orders due to dependencies.'); $this->configImporter->import();