Skip to content

Commit d1ebf19

Browse files
committed
remove double quotes
1 parent a18eb7c commit d1ebf19

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_swagger.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ async def test_class_view_single_method(aiohttp_client, loop):
305305

306306
async def test_class_view_multiple_methods(aiohttp_client, loop):
307307
app = web.Application(loop=loop)
308-
app.router.add_route("*", "/class_view", ClassView)
308+
app.router.add_route('*', "/class_view", ClassView)
309309
setup_swagger(app)
310310

311311
client = await aiohttp_client(app)

0 commit comments

Comments
 (0)