diff --git a/src/Plugin/SharedTest.php b/src/Plugin/SharedTest.php index 8718722..c1fb87d 100755 --- a/src/Plugin/SharedTest.php +++ b/src/Plugin/SharedTest.php @@ -111,7 +111,7 @@ function test_shared_plugin_with_args() ] ]); - $this->assertEquals('bar', $app->plugin('foobar', [['foo' => 'bar']])['foo']); - $this->assertEquals('bar', $app->plugin('foobar', [['foo' => 'baz']])['foo']); + $this->assertEquals('baz', $app->plugin('foobar', [['foo' => 'baz']])['foo']); + $this->assertEquals('baz', $app->plugin('foobar', [['foo' => 'bat']])['foo']); } }