Fixed model route

This commit is contained in:
Ceferino Patino 2022-08-08 18:51:03 -05:00
commit c4f71acb15
2 changed files with 2 additions and 2 deletions

View file

@ -1,7 +1,7 @@
from django.test import TestCase
from django.urls import reverse
from ..models import Activity, House
from ...models import Activity, House
class PointsEntryCreateViewTest(TestCase):

View file

@ -1,7 +1,7 @@
from django.test import TestCase
from django.urls import reverse
from ..models import Activity, House
from ...models import Activity, House
class UserEntryCreateViewTest(TestCase):