Security update for Core, with self-updated composer
[yaffs-website] / web / core / tests / Drupal / KernelTests / Core / KeyValueStore / StorageTestBase.php
index 76512342686d410947282d744a80f1e800c99bec..48af84d54a37c6b9766084564c58752f6d8de943 100644 (file)
@@ -102,7 +102,7 @@ abstract class StorageTestBase extends KernelTestBase {
     // Ensure that an item with the same name exists in the other collection.
     $stores[1]->set('foo', $this->objects[5]);
     $result = $stores[0]->getAll();
-    // Not using assertIdentical(), since the order is not defined for getAll().
+    // Not using assertSame(), since the order is not defined for getAll().
     $this->assertEqual(count($result), count($values));
     foreach ($result as $key => $value) {
       $this->assertEqual($values[$key], $value);