We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a024af5 commit e72f031Copy full SHA for e72f031
spec/Middleware/ExpressiveFactorySpec.php
@@ -252,7 +252,6 @@
252
$actual = $this->factory($container);
253
expect($actual)->toBeAnInstanceOf(Expressive::class);
254
expect($container->has('ErrorHeroModuleLogger'))->toBeTruthy();
255
-
256
}
257
258
});
@@ -274,8 +273,10 @@
274
273
allow($container)->toReceive('get')->with(TemplateRendererInterface::class)
275
->andReturn($renderer);
276
+ expect($container->has('ErrorHeroModuleLogger'))->toBeFalsy();
277
278
279
+ expect($container->has('ErrorHeroModuleLogger'))->toBeTruthy();
280
281
282
0 commit comments