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 | ebd0bd88a06fd3383307f6e325d203db15c54979 (patch) | |
tree | 6d294a71ec47414af311152be9ca0163fb61d0b5 /archaeological_finds | |
parent | 1d616ac202fd12d72f186a458de170318b51b9c9 (diff) | |
parent | e75ddf811652b7df431b48048e7baf0ee044b9a0 (diff) | |
download | Ishtar-ebd0bd88a06fd3383307f6e325d203db15c54979.tar.bz2 Ishtar-ebd0bd88a06fd3383307f6e325d203db15c54979.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", |