summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
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
commiteb43b1ad2d627b7de68c69f67bef98a9a96036e8 (patch)
treece0c2a5b3430e09b16edbccfa0970cfab1e616f3
parentb669452583415c9aa97622c333a6c2169e4881ba (diff)
downloadIshtar-eb43b1ad2d627b7de68c69f67bef98a9a96036e8.tar.bz2
Ishtar-eb43b1ad2d627b7de68c69f67bef98a9a96036e8.zip
Fix bad test string
-rw-r--r--archaeological_operations/tests.py4
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&#39;é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 = {}