Skip to content
This repository was archived by the owner on Jan 29, 2020. It is now read-only.

Commit 7cc1ecf

Browse files
committed
Fix assertion argument order
1 parent 0ab715d commit 7cc1ecf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/Controller/PluginManagerTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public function testGetWithConstructor()
5959
'factories' => [Plugin\TestAsset\SamplePluginWithConstructor::class => InvokableFactory::class],
6060
]);
6161
$plugin = $pluginManager->get('samplePlugin');
62-
$this->assertEquals($plugin->getBar(), 'baz');
62+
$this->assertEquals('baz', $plugin->getBar());
6363
}
6464

6565
public function testGetWithConstructorAndOptions()

0 commit comments

Comments
 (0)