summaryrefslogtreecommitdiff
path: root/tests/signing
diff options
context:
space:
mode:
authorGeorge Marshall <george@georgemarshall.name>2016-03-06 00:48:06 -0800
committerClaude Paroz <claude@2xlibre.net>2016-03-07 11:58:21 +0100
commit75614f6d4c1a3fe779a75eb3e787452cccd1d814 (patch)
treedf4421dfcd85d1f5519e470bb8a570034056e99a /tests/signing
parent95ca01f9995ef72c6bbe9bba477781b46cf573b4 (diff)
downloaddjango-75614f6d4c1a3fe779a75eb3e787452cccd1d814.tar.gz
Fixed #26331 -- Fixed test function names with typos
Diffstat (limited to 'tests/signing')
-rw-r--r--tests/signing/tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/signing/tests.py b/tests/signing/tests.py
index 910345ed8c..0b7e54189b 100644
--- a/tests/signing/tests.py
+++ b/tests/signing/tests.py
@@ -57,7 +57,7 @@ class TestSigner(SimpleTestCase):
self.assertNotEqual(force_str(example), signed)
self.assertEqual(example, signer.unsign(signed))
- def unsign_detects_tampering(self):
+ def test_unsign_detects_tampering(self):
"unsign should raise an exception if the value has been tampered with"
signer = signing.Signer('predictable-secret')
value = 'Another string'