diff --git a/core/modules/system/lib/Drupal/system/Tests/Entity/EntityTranslationTest.php b/core/modules/system/lib/Drupal/system/Tests/Entity/EntityTranslationTest.php
index 6bd3228..15d6fc3 100644
--- a/core/modules/system/lib/Drupal/system/Tests/Entity/EntityTranslationTest.php
+++ b/core/modules/system/lib/Drupal/system/Tests/Entity/EntityTranslationTest.php
@@ -455,7 +455,7 @@ function testEntityTranslationAPI() {
     // Check that per-language defaults are properly populated.
     $entity = $this->reloadEntity($entity);
     $instance_id = implode('.', array($entity->entityType(), $entity->bundle(), $this->field_name));
-    $instances = $this->entityManager->getStorageController('field_instance')->load(array($instance_id));
+    $instances = $this->entityManager->getStorageController('field_instance')->loadMultiple(array($instance_id));
     $instance = reset($instances);
     $instance['default_value_function'] = 'entity_test_field_default_value';
     $instance->save();
diff --git a/core/modules/system/lib/Drupal/system/Tests/Entity/EntityUnitTestBase.php b/core/modules/system/lib/Drupal/system/Tests/Entity/EntityUnitTestBase.php
index 9ac9cff..e5e4897 100644
--- a/core/modules/system/lib/Drupal/system/Tests/Entity/EntityUnitTestBase.php
+++ b/core/modules/system/lib/Drupal/system/Tests/Entity/EntityUnitTestBase.php
@@ -94,7 +94,7 @@ protected function reloadEntity(EntityInterface $entity) {
     $ids = array($entity->id());
     $controller = $this->entityManager->getStorageController($entity->entityType());
     $controller->resetCache($ids);
-    $entities = $controller->load($ids);
+    $entities = $controller->loadMultiple($ids);
     return reset($entities);
   }
 
