Skip to content
Snippets Groups Projects
Commit 9c0d0c1d authored by Erik Reid's avatar Erik Reid
Browse files

change basic route name

parent cf4c8d3d
No related branches found
No related tags found
No related merge requests found
......@@ -41,7 +41,7 @@ def version():
)
@routes.route("/abc", methods=['GET', 'POST'])
@routes.route("/routers", methods=['GET', 'POST'])
@require_accepts_json
def abc():
redis_config = current_app.config["INVENTORY_PROVIDER_CONFIG"]["redis"]
......
......@@ -188,7 +188,7 @@ def test_abc(mocker, client):
'inventory_provider.data_routes.redis.StrictRedis',
MockedRedis)
rv = client.post(
"data/abc",
"data/routers",
headers=DEFAULT_REQUEST_HEADERS)
assert rv.status_code == 200
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment