Skip to content

Commit

Permalink
Fixing up a test
Browse files Browse the repository at this point in the history
  • Loading branch information
Rican7 committed Feb 1, 2017
1 parent 6e6afa0 commit 65c4597
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/Klein/Tests/RoutingTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@

namespace Klein\Tests;

use Exception;
use Klein\App;
use Klein\DataCollection\RouteCollection;
use Klein\Exceptions\DispatchHaltedException;
Expand Down Expand Up @@ -2261,7 +2262,7 @@ function () {
$this->klein_app->dispatch(
MockRequestFactory::create('/users/1738197/friends/7828316')
);
} catch (\Exception $e) {
} catch (Exception $e) {
$exception = $e->getPrevious();
}

Expand Down

0 comments on commit 65c4597

Please sign in to comment.