Skip to content

Commit

Permalink
fixed route provider
Browse files Browse the repository at this point in the history
  • Loading branch information
josephmancuso committed Jun 4, 2019
1 parent b7243e8 commit ca70f00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/providers/test_route_provider.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def test_controller_that_returns_a_view(self):

def test_base_route_hits_controller(self):
self.app.make('Route').url = '/test'
self.app.bind('WebRoutes', [get('/@id', ControllerTest.test)])
self.app.bind('WebRoutes', [Get('/@id', ControllerTest.test)])
self.provider.boot(
self.app.make('Route'),
self.app.make('Request'),
Expand Down

0 comments on commit ca70f00

Please sign in to comment.