33from piccolo .apps .user .tables import BaseUser
44from piccolo .conf .apps import AppRegistry , AppConfig , table_finder
55
6- from ..example_project .tables import Manager
6+ from ..example_app .tables import Manager
77
88
99class TestAppRegistry (TestCase ):
@@ -58,7 +58,7 @@ def test_table_finder(self):
5858 """
5959 Should return all Table subclasses.
6060 """
61- tables = table_finder (modules = ["tests.example_project .tables" ])
61+ tables = table_finder (modules = ["tests.example_app .tables" ])
6262
6363 table_class_names = [i .__name__ for i in tables ]
6464 table_class_names .sort ()
@@ -76,7 +76,7 @@ def test_include_tags(self):
7676 Should return all Table subclasses with a matching tag.
7777 """
7878 tables = table_finder (
79- modules = ["tests.example_project .tables" ], include_tags = ["special" ]
79+ modules = ["tests.example_app .tables" ], include_tags = ["special" ]
8080 )
8181
8282 table_class_names = [i .__name__ for i in tables ]
@@ -91,7 +91,7 @@ def test_exclude_tags(self):
9191 Should return all Table subclasses without the specified tags.
9292 """
9393 tables = table_finder (
94- modules = ["tests.example_project .tables" ], exclude_tags = ["special" ]
94+ modules = ["tests.example_app .tables" ], exclude_tags = ["special" ]
9595 )
9696
9797 table_class_names = [i .__name__ for i in tables ]
0 commit comments