diff options
Diffstat (limited to 'ishtar_common/tests.py')
-rw-r--r-- | ishtar_common/tests.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ishtar_common/tests.py b/ishtar_common/tests.py index 53db0baae..3e9181f30 100644 --- a/ishtar_common/tests.py +++ b/ishtar_common/tests.py @@ -424,9 +424,9 @@ class WizardTest(object): self.assertRedirects( response, '/{}/{}'.format(self.url_name, next_form), - msg_prefix="Redirection to {} has failed - " - "Error on previous form ({})?".format( - next_form, current_step) + msg_prefix="Dataset n{} Redirection to {} has failed -" + " Error on previous form ({})?".format( + data_idx + 1, next_form, current_step) ) if idx == len(self.steps) - 1: # last form |