Skip to content

Commit

Permalink
Remove the test skips
Browse files Browse the repository at this point in the history
  • Loading branch information
adriansuter committed Aug 10, 2019
1 parent 8f5943c commit 957578f
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions tests/MiddlewareDispatcherTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -134,11 +134,6 @@ public function testDeferredResolvedSlimCallable(bool $useAdvancedCallableResolv
*/
public function testDeferredResolvedClosureIsBoundToContainer(bool $useAdvancedCallableResolver)
{
if (!$useAdvancedCallableResolver) {
// TODO We need to handle this case. Something fails.
$this->markTestSkipped();
return;
}
$containerProphecy = $this->prophesize(ContainerInterface::class);

$self = $this;
Expand Down Expand Up @@ -520,11 +515,6 @@ public function testCanBeReExecutedRecursivelyDuringDispatch(bool $useAdvancedCa
*/
public function testFetchesMiddlewareFromContainer(bool $useAdvancedCallableResolver)
{
if (!$useAdvancedCallableResolver) {
// TODO This should be analyzed: "Method `Double\MiddlewareInterface\P461::__invoke()` not found."
$this->markTestSkipped();
return;
}
$kernelProphecy = $this->prophesize(RequestHandlerInterface::class);
$requestProphecy = $this->prophesize(ServerRequestInterface::class);
$responseProphecy = $this->prophesize(ResponseInterface::class);
Expand Down

0 comments on commit 957578f

Please sign in to comment.