We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9af504b commit 0a677feCopy full SHA for 0a677fe
hordak/tests/views/test_transactions.py
@@ -1,6 +1,7 @@
1
from decimal import Decimal
2
from unittest.mock import patch
3
4
+from django.forms.renderers import BaseRenderer
5
from django.test import TestCase
6
from django.urls import reverse
7
from moneyed import Money
@@ -10,6 +11,10 @@
10
11
from hordak.utilities.currency import Balance
12
13
14
+# TODO: remove when https://code.djangoproject.com/ticket/34531 is fixed
15
+BaseRenderer.form_template_name = "django/forms/div.html" # type: ignore
16
+
17
18
class TransactionCreateViewTestCase(DataProvider, TestCase):
19
def setUp(self):
20
self.view_url = reverse("hordak:transactions_create")
0 commit comments