Skip to content

Commit

Permalink
removed app directory
Browse files Browse the repository at this point in the history
  • Loading branch information
josephmancuso committed Sep 29, 2020
1 parent 1907bec commit d929136
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion databases/seeds/user_table_seeder.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from src.masoniteorm.seeds import Seeder
from src.masoniteorm.factories import Factory as factory
from app.User import User
from tests.User import User

factory.register(User, lambda faker: {'email': faker.email()})

Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion tests/mysql/model/test_accessors_and_mutators.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import pendulum
import datetime

from app.User import User
from tests.User import User
from src.masoniteorm.collection import Collection
from src.masoniteorm.query.grammars import MSSQLGrammar
from src.masoniteorm.models import Model
Expand Down
2 changes: 1 addition & 1 deletion tests/mysql/model/test_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import pendulum
import datetime

from app.User import User
from tests.User import User
from src.masoniteorm.collection import Collection
from src.masoniteorm.query.grammars import MSSQLGrammar
from src.masoniteorm.models import Model
Expand Down
2 changes: 1 addition & 1 deletion tests/mysql/scopes/test_can_use_scopes.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import inspect
import unittest

from app.User import User
from tests.User import User
from src.masoniteorm.scopes import scope, SoftDeletesMixin
from src.masoniteorm.models import Model

Expand Down

0 comments on commit d929136

Please sign in to comment.