Skip to content
Snippets Groups Projects
Commit 8fa43896 authored by Fredrik Jonsson's avatar Fredrik Jonsson
Browse files

No translations needed in tests.

parent ce967a8e
No related branches found
No related tags found
No related merge requests found
......@@ -9,7 +9,6 @@ from django.core import mail
from django.core.exceptions import ValidationError
from django.test import TestCase, override_settings
from django.urls import reverse
from django.utils.translation import gettext_lazy
from hypha.apply.funds.blocks import EmailBlock, FullNameBlock
from hypha.apply.funds.models import ApplicationSubmission, Reminder
......@@ -216,7 +215,7 @@ class TestFormSubmission(TestCase):
if isinstance(field.block, FullNameBlock):
data[field.id] = self.name if name is None else name
if draft:
data['draft'] = gettext_lazy("Save Draft")
data['draft'] = 'Save Draft'
request = make_request(user, data, method='post', site=self.site)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment