Skip to content
This repository has been archived by the owner on Jan 18, 2020. It is now read-only.

Commit

Permalink
Fix import of Log model in test cases
Browse files Browse the repository at this point in the history
The import of the Log model was changed in chop-dbhi/avocado@78cfec59 to not be
imported to avocado.models. The full path to avocado.events.models is now
being used.
  • Loading branch information
bruth committed Nov 10, 2013
1 parent 8ea3278 commit 2f7a0a8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion tests/cases/resources/tests/concept.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import json
from django.test.utils import override_settings
from avocado.models import DataConcept, DataConceptField, DataField, Log
from avocado.models import DataConcept, DataConceptField, DataField
from avocado.events.models import Log
from .base import BaseTestCase


Expand Down
3 changes: 2 additions & 1 deletion tests/cases/resources/tests/field.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import json
from django.test.utils import override_settings
from avocado.models import DataField, Log
from avocado.models import DataField
from avocado.events.models import Log
from .base import BaseTestCase
from tests.models import Project, Title

Expand Down

0 comments on commit 2f7a0a8

Please sign in to comment.