Issue #3158280 by paulocs, narendra.rajwar27, Hardik_Patel_12: Remove unused variable DefaultLazyPluginCollectionTest.php file

merge-requests/2/head
catch 2020-08-14 10:06:15 +01:00
parent c1522a73a8
commit 2b815f1aee
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}