From 2b815f1aee88f4a315426b89eaac0282502c8ae0 Mon Sep 17 00:00:00 2001 From: catch Date: Fri, 14 Aug 2020 10:06:15 +0100 Subject: [PATCH] Issue #3158280 by paulocs, narendra.rajwar27, Hardik_Patel_12: Remove unused variable DefaultLazyPluginCollectionTest.php file --- .../Tests/Core/Plugin/DefaultLazyPluginCollectionTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/tests/Drupal/Tests/Core/Plugin/DefaultLazyPluginCollectionTest.php b/core/tests/Drupal/Tests/Core/Plugin/DefaultLazyPluginCollectionTest.php index 363c9afc327..8877683bea1 100644 --- a/core/tests/Drupal/Tests/Core/Plugin/DefaultLazyPluginCollectionTest.php +++ b/core/tests/Drupal/Tests/Core/Plugin/DefaultLazyPluginCollectionTest.php @@ -235,7 +235,7 @@ class DefaultLazyPluginCollectionTest extends LazyPluginCollectionTestBase { $this->defaultPluginCollection->setConfiguration(['cherry' => ['value' => 'kiwi', 'id' => 'cherry']]); $expected['cherry'] = ['value' => 'kiwi', 'id' => 'cherry']; $config = $this->defaultPluginCollection->getConfiguration(); - $this->assertSame(['cherry' => ['value' => 'kiwi', 'id' => 'cherry']], $config); + $this->assertSame($expected, $config); }