summaryrefslogtreecommitdiff
path: root/tests/template_tests/syntax_tests/test_numpy.py
diff options
context:
space:
mode:
authordjango-bot <ops@djangoproject.com>2022-02-08 12:09:55 +0100
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2022-02-08 12:15:38 +0100
commit6a682b38e75d4c975b4c4493565a59f1bc14397c (patch)
tree0bd9cda550bea26238656d9f120d769e8b41bb9e /tests/template_tests/syntax_tests/test_numpy.py
parente73ce08888e6f34d3f050377cfd2fbb733be94a9 (diff)
[4.0.x] Refs #33476 -- Reformatted code with Black.
Backport of 9c19aff7c7561e3a82978a272ecdaad40dda5c00 from main.
Diffstat (limited to 'tests/template_tests/syntax_tests/test_numpy.py')
-rw-r--r--tests/template_tests/syntax_tests/test_numpy.py19
1 files changed, 9 insertions, 10 deletions
diff --git a/tests/template_tests/syntax_tests/test_numpy.py b/tests/template_tests/syntax_tests/test_numpy.py
index 09d57ebcc2..2c78b45358 100644
--- a/tests/template_tests/syntax_tests/test_numpy.py
+++ b/tests/template_tests/syntax_tests/test_numpy.py
@@ -12,29 +12,28 @@ except ImportError:
@skipIf(numpy is False, "Numpy must be installed to run these tests.")
class NumpyTests(SimpleTestCase):
-
- @setup({'numpy-array-index01': '{{ var.1 }}'})
+ @setup({"numpy-array-index01": "{{ var.1 }}"})
def test_numpy_array_index01(self):
"""
Numpy's array-index syntax allows a template to access a certain
item of a subscriptable object.
"""
output = self.engine.render_to_string(
- 'numpy-array-index01',
- {'var': numpy.array(["first item", "second item"])},
+ "numpy-array-index01",
+ {"var": numpy.array(["first item", "second item"])},
)
- self.assertEqual(output, 'second item')
+ self.assertEqual(output, "second item")
- @setup({'numpy-array-index02': '{{ var.5 }}'})
+ @setup({"numpy-array-index02": "{{ var.5 }}"})
def test_numpy_array_index02(self):
"""
Fail silently when the array index is out of range.
"""
output = self.engine.render_to_string(
- 'numpy-array-index02',
- {'var': numpy.array(["first item", "second item"])},
+ "numpy-array-index02",
+ {"var": numpy.array(["first item", "second item"])},
)
if self.engine.string_if_invalid:
- self.assertEqual(output, 'INVALID')
+ self.assertEqual(output, "INVALID")
else:
- self.assertEqual(output, '')
+ self.assertEqual(output, "")