Browse Source

[fix] kickass test html escaping

Adam Tauber 8 years ago
parent
commit
8116e341cc
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      tests/unit/engines/test_kickass.py

+ 1
- 1
tests/unit/engines/test_kickass.py View File

@@ -381,7 +381,7 @@ class TestKickassEngine(SearxTestCase):
381 381
         self.assertEqual(len(results), 5)
382 382
         self.assertEqual(results[0]['title'], 'This should be the title')
383 383
         self.assertEqual(results[0]['url'], 'https://kickass.cd/url.html')
384
-        self.assertEqual(results[0]['content'], 'Posted by riri in Other > Unsorted')
384
+        self.assertEqual(results[0]['content'], 'Posted by riri in Other > Unsorted')
385 385
         self.assertEqual(results[0]['seed'], 10)
386 386
         self.assertEqual(results[0]['leech'], 1)
387 387
         self.assertEqual(results[0]['files'], 4)