diff --git a/app.py b/app.py index 5f381c4..d6aff8a 100644 --- a/app.py +++ b/app.py @@ -1,5 +1,5 @@ from flask import Flask -from flask_pytest_example.handlers.routes import configure_routes +from handlers.routes import configure_routes app = Flask(__name__) diff --git a/tests/test_routes.py b/tests/test_routes.py index cce7315..623d972 100644 --- a/tests/test_routes.py +++ b/tests/test_routes.py @@ -1,7 +1,7 @@ from flask import Flask import json -from flask_pytest_example.handlers.routes import configure_routes +from handlers.routes import configure_routes def test_base_route():