Skip to content

Commit

Permalink
Fixed for case insensitive file system
Browse files Browse the repository at this point in the history
  • Loading branch information
Gianluca Arbezzano committed Oct 2, 2015
1 parent ac6ffb5 commit 8a8ae85
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 8 deletions.
2 changes: 1 addition & 1 deletion tests/AppTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ public function testDispatcherShouldBeCallable()

public function testWithInternalContainerFactory()
{
chdir(dirname(__DIR__.'/../'));
chdir(__DIR__.'/app');
$app = new App();

$request = (new Request())
Expand Down
3 changes: 3 additions & 0 deletions tests/app/config/first.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
<?php

return [
'router' => \FastRoute\simpleDispatcher(function (\FastRoute\RouteCollector $r) {
$r->addRoute('GET', '/', ['TestApp\Controller\Index', 'index']);
}),
'one' => 1,
'two' => [
'class' => new \StdClass(),
Expand Down
7 changes: 0 additions & 7 deletions tests/config/app.test.config.php

This file was deleted.

0 comments on commit 8a8ae85

Please sign in to comment.