Skip to content

Commit d81369d

Browse files
committed
Merge branch 'hotfix/183'
Close zendframework#183
2 parents ede64a1 + 3115d44 commit d81369d

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

test/Application/InitializationIntegrationTest.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,13 @@ public function testDefaultInitializationWorkflow()
3636
$request->setUri('http://example.local/path');
3737
$request->setRequestUri('/path');
3838

39+
ob_start();
3940
$application->run();
41+
$content = ob_get_clean();
42+
4043
$response = $application->getResponse();
4144
$this->assertContains('Application\\Controller\\PathController', $response->getContent());
45+
$this->assertContains('Application\\Controller\\PathController', $content);
4246
$this->assertContains(MvcEvent::EVENT_DISPATCH, $response->toString());
4347
}
4448
}

0 commit comments

Comments
 (0)