aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/controllers/article.py4
-rw-r--r--tests/controllers/feed.py4
-rw-r--r--tests/fixtures.py2
3 files changed, 5 insertions, 5 deletions
diff --git a/tests/controllers/article.py b/tests/controllers/article.py
index 5a54e0b7..a62d1a83 100644
--- a/tests/controllers/article.py
+++ b/tests/controllers/article.py
@@ -1,6 +1,6 @@
from tests.base import BasePyaggTest
-from pyaggr3g470r.controllers import ArticleController
-from pyaggr3g470r.controllers import FeedController
+from web.controllers import ArticleController
+from web.controllers import FeedController
class ArticleControllerTest(BasePyaggTest):
diff --git a/tests/controllers/feed.py b/tests/controllers/feed.py
index 863ac0bb..6467a5a1 100644
--- a/tests/controllers/feed.py
+++ b/tests/controllers/feed.py
@@ -1,6 +1,6 @@
from tests.base import BasePyaggTest
-from pyaggr3g470r.controllers import FeedController
-from pyaggr3g470r.controllers import ArticleController
+from web.controllers import FeedController
+from web.controllers import ArticleController
class FeedControllerTest(BasePyaggTest):
diff --git a/tests/fixtures.py b/tests/fixtures.py
index 6aab645d..99f46c37 100644
--- a/tests/fixtures.py
+++ b/tests/fixtures.py
@@ -1,4 +1,4 @@
-from pyaggr3g470r.models import db_create, db_empty, User, Article, Feed
+from web.models import db_create, db_empty, User, Article, Feed
def populate_db(db):
bgstack15