diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2024-09-17 12:10:51 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2024-09-17 12:37:13 +0200 |
commit | 65a287f42c36bb1c49fb3dff81a92b1a54de1d3c (patch) | |
tree | 61fffdf56ca4b40fee912a73cc87bbac4853beff /archaeological_operations | |
parent | 05ea92744e8015d2a9f8d9cdf54edfe4770c31b9 (diff) | |
download | Ishtar-65a287f42c36bb1c49fb3dff81a92b1a54de1d3c.tar.bz2 Ishtar-65a287f42c36bb1c49fb3dff81a92b1a54de1d3c.zip |
✅ fix tests
Diffstat (limited to 'archaeological_operations')
-rw-r--r-- | archaeological_operations/tests.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/archaeological_operations/tests.py b/archaeological_operations/tests.py index e2a59345d..b26ad4bcb 100644 --- a/archaeological_operations/tests.py +++ b/archaeological_operations/tests.py @@ -2752,7 +2752,7 @@ class CustomFormTest(TestCase, OperationInitTest): step = "selec-operation_modification" cls_wiz.wizard_post(c, url, step, {"pk": self.operations[0].pk}) - step = "relations-operation_modification" + step = "general-operation_modification" data = { "{}{}-current_step".format(cls_wiz.url_name, cls_wiz.wizard_name): [step], } @@ -2760,7 +2760,7 @@ class CustomFormTest(TestCase, OperationInitTest): self.assertNotEqual(response.status_code, 404) CustomForm.objects.create( name="Test2", - form="operation-080-relations", + form="operation-010-general", available=True, apply_to_all=True, enabled=False, |