diff --git a/tests/Models/ModuleTest.php b/tests/Models/ModuleTest.php index 226f83c..c51b72b 100644 --- a/tests/Models/ModuleTest.php +++ b/tests/Models/ModuleTest.php @@ -140,8 +140,8 @@ public function it_returns_valid_service_provider_class() ->with('modules/namespace' . '\\' . $this->name . '\\' . 'provider/namespace' . '\\' . 'ServiceProvider', m::on(function ($arg) { - return $arg instanceof Module && $arg->foo() == 'bar'; - }))->andReturn('result'); + return $arg instanceof Module && $arg->foo() == 'bar'; + }))->andReturn('result'); $this->assertSame('result', $this->module->serviceProviderClass()); }