summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorNoémi Ványi <sitbackandwait@gmail.com>2018-05-21 18:15:49 +0200
committerNoémi Ványi <sitbackandwait@gmail.com>2018-05-21 18:15:49 +0200
commit7fd7bd75ff6bac2943d31db8a6816a0f8e6f85e1 (patch)
treeb28385a42ef743e893ac730fa2f1117ebb736bce /tests
parent16915116e0a1cc406a6ff39e0a01ab3497b188f5 (diff)
downloadsearxng-7fd7bd75ff6bac2943d31db8a6816a0f8e6f85e1.tar.gz
searxng-7fd7bd75ff6bac2943d31db8a6816a0f8e6f85e1.zip
follow up tests
Diffstat (limited to 'tests')
-rw-r--r--tests/unit/engines/test_piratebay.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/unit/engines/test_piratebay.py b/tests/unit/engines/test_piratebay.py
index 5699380be..89a78e796 100644
--- a/tests/unit/engines/test_piratebay.py
+++ b/tests/unit/engines/test_piratebay.py
@@ -15,7 +15,7 @@ class TestPiratebayEngine(SearxTestCase):
params = piratebay.request(query, dicto)
self.assertIn('url', params)
self.assertIn(query, params['url'])
- self.assertIn('piratebay.se', params['url'])
+ self.assertIn('piratebay.org', params['url'])
self.assertIn('0', params['url'])
dicto['category'] = 'music'
@@ -99,7 +99,7 @@ class TestPiratebayEngine(SearxTestCase):
self.assertEqual(type(results), list)
self.assertEqual(len(results), 2)
self.assertEqual(results[0]['title'], 'This is the title')
- self.assertEqual(results[0]['url'], 'https://thepiratebay.se/this.is.the.link')
+ self.assertEqual(results[0]['url'], 'https://thepiratebay.org/this.is.the.link')
self.assertEqual(results[0]['content'], 'This is the content and should be OK')
self.assertEqual(results[0]['seed'], 13)
self.assertEqual(results[0]['leech'], 334)
@@ -149,7 +149,7 @@ class TestPiratebayEngine(SearxTestCase):
self.assertEqual(type(results), list)
self.assertEqual(len(results), 1)
self.assertEqual(results[0]['title'], 'This is the title')
- self.assertEqual(results[0]['url'], 'https://thepiratebay.se/this.is.the.link')
+ self.assertEqual(results[0]['url'], 'https://thepiratebay.org/this.is.the.link')
self.assertEqual(results[0]['content'], 'This is the content and should be OK')
self.assertEqual(results[0]['seed'], 0)
self.assertEqual(results[0]['leech'], 0)