mirror of
https://github.com/django/django.git
synced 2025-10-31 09:41:08 +00:00
Fixed #26331 -- Fixed test function names with typos
This commit is contained in:
committed by
Claude Paroz
parent
95ca01f999
commit
75614f6d4c
@@ -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'
|
||||
|
||||
Reference in New Issue
Block a user