diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/Tests/VocabularyUnitTest.php b/core/modules/taxonomy/lib/Drupal/taxonomy/Tests/VocabularyUnitTest.php index d327f78..8b3f82a 100644 --- a/core/modules/taxonomy/lib/Drupal/taxonomy/Tests/VocabularyUnitTest.php +++ b/core/modules/taxonomy/lib/Drupal/taxonomy/Tests/VocabularyUnitTest.php @@ -122,7 +122,7 @@ function testTaxonomyVocabularyLoadMultiple() { // Fetch all vocabularies skipping a cache. // Confirm that the vocabularies are ordered by weight. - $vocabularies = $this->container->get('plugin.manager.entity')->getStorageController('taxonomy_vocabulary')->load(NULL, TRUE); + $vocabularies = $this->container->get('plugin.manager.entity')->getStorageController('taxonomy_vocabulary')->load(); $loaded_order = array_keys($vocabularies); $expected_order = array($vocabulary1->id(), $vocabulary2->id(), $vocabulary3->id()); $this->assertIdentical($loaded_order, $expected_order);