From 5d5ffdfb7ce0af77040ea4e934812def0b0825f7 Mon Sep 17 00:00:00 2001 From: "Maxime Alves LIRMM@home" Date: Tue, 14 Dec 2021 09:03:45 +0100 Subject: [PATCH] [tests] re-enable dummy_project route testing --- tests/test_dummy_project_router.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_dummy_project_router.py b/tests/test_dummy_project_router.py index 1168071..b99a1d4 100644 --- a/tests/test_dummy_project_router.py +++ b/tests/test_dummy_project_router.py @@ -30,7 +30,7 @@ def test_get_route(dummy_project, application_domain): # ('abc/alphabet','GET'), ] - for route_def in []:#dummy_domain_routes: + for route_def in dummy_domain_routes: path, verb = route_def[0], route_def[1] route_path = '/{}'.format(path) print(route_path)