diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-08-16 19:40:37 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-08-16 19:40:37 +0200 |
commit | 1756d17a37bc7f9f621408eeab7ddd3341007917 (patch) | |
tree | ce0c2a5b3430e09b16edbccfa0970cfab1e616f3 /archaeological_operations/tests.py | |
parent | 589b4ded029843e3b09a753ff1690bc94bf0eba9 (diff) | |
download | Ishtar-1756d17a37bc7f9f621408eeab7ddd3341007917.tar.bz2 Ishtar-1756d17a37bc7f9f621408eeab7ddd3341007917.zip |
Fix bad test string
Diffstat (limited to 'archaeological_operations/tests.py')
-rw-r--r-- | archaeological_operations/tests.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/archaeological_operations/tests.py b/archaeological_operations/tests.py index f45355558..e1bf43f5a 100644 --- a/archaeological_operations/tests.py +++ b/archaeological_operations/tests.py @@ -1257,8 +1257,8 @@ class OperationTest(TestCase, OperationInitTest): self.assertIn(u"État d'éveil".encode('utf-8'), response.content) self.assertIn(u"réveillée".encode('utf-8'), response.content) self.assertIn(u"Grenouille".encode('utf-8'), response.content) - self.assertIn(u"32303".encode('utf-8'), response.content) - self.assertNotIn(u"53444".encode('utf-8'), response.content) + self.assertIn(u">32303<".encode('utf-8'), response.content) + self.assertNotIn(u">53444<".encode('utf-8'), response.content) self.assertNotIn(u"Zzzzzzzz".encode('utf-8'), response.content) operation.data = {} |