diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-05-15 14:27:14 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-05-15 14:27:14 +0200 |
commit | edc8ef2b45b7358f99a4b9fb01d0b0e5f4a2d2e7 (patch) | |
tree | 6d294a71ec47414af311152be9ca0163fb61d0b5 /archaeological_finds | |
parent | 8e29863487b176ec1877907658caa3c65d114882 (diff) | |
parent | bf8ad287a02fd389acee784ed6d4fa2a99541696 (diff) | |
download | Ishtar-edc8ef2b45b7358f99a4b9fb01d0b0e5f4a2d2e7.tar.bz2 Ishtar-edc8ef2b45b7358f99a4b9fb01d0b0e5f4a2d2e7.zip |
Merge branch 'master' into develop
Diffstat (limited to 'archaeological_finds')
-rw-r--r-- | archaeological_finds/tests.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/archaeological_finds/tests.py b/archaeological_finds/tests.py index 10860c0f3..27336a05d 100644 --- a/archaeological_finds/tests.py +++ b/archaeological_finds/tests.py @@ -321,6 +321,7 @@ class FindTest(FindInit, TestCase): profile = get_current_profile() profile.find_index = u"O" profile.save() + profile = get_current_profile(force=True) op1 = self.create_operation()[-1] op2 = self.create_operation()[-1] @@ -349,9 +350,10 @@ class FindTest(FindInit, TestCase): self.assertEqual(find_3.index, 1) self.assertEqual(bf_3.index, 1) - profile = get_current_profile() + profile = get_current_profile(force=True) profile.find_index = u"CR" profile.save() + profile = get_current_profile(force=True) op3 = self.create_operation()[-1] op3_cr1 = self.create_context_record(data={'label': "CR1", |