diff options
author | Étienne Loks <etienne.loks@peacefrogs.net> | 2013-10-24 17:24:40 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@peacefrogs.net> | 2013-10-24 17:24:40 +0200 |
commit | d7c0dc768721cb5174b3f62acdc960ad85b333a9 (patch) | |
tree | 2eda54be3768588c8573811d232560eae60da739 /archaeological_operations/tests.py | |
parent | 0dfe2d08f84dd69fac50401b0af04e602d148242 (diff) | |
download | Ishtar-d7c0dc768721cb5174b3f62acdc960ad85b333a9.tar.bz2 Ishtar-d7c0dc768721cb5174b3f62acdc960ad85b333a9.zip |
Fix history management - fix archaeological files history tests
* fix rollback
* fix history duplicates
Diffstat (limited to 'archaeological_operations/tests.py')
-rw-r--r-- | archaeological_operations/tests.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/archaeological_operations/tests.py b/archaeological_operations/tests.py index 983165968..0a48f4d4a 100644 --- a/archaeological_operations/tests.py +++ b/archaeological_operations/tests.py @@ -31,9 +31,9 @@ import models from ishtar_common.models import OrganizationType, Organization, Town class ImportOperationTest(TestCase): - fixtures = ['../ishtar_common/fixtures/initial_data.json', - '../archaeological_files/fixtures/initial_data.json', - '../archaeological_operations/fixtures/initial_data-fr.json'] + fixtures = [settings.ROOT_PATH + '../ishtar_common/fixtures/initial_data.json', + settings.ROOT_PATH + '../archaeological_files/fixtures/initial_data.json', + settings.ROOT_PATH + '../archaeological_operations/fixtures/initial_data-fr.json'] def setUp(self): user = User.objects.create_user('username') |