diff options
author | Noémi Ványi <sitbackandwait@gmail.com> | 2018-05-21 18:15:49 +0200 |
---|---|---|
committer | Noémi Ványi <sitbackandwait@gmail.com> | 2018-05-21 18:15:49 +0200 |
commit | 7fd7bd75ff6bac2943d31db8a6816a0f8e6f85e1 (patch) | |
tree | b28385a42ef743e893ac730fa2f1117ebb736bce /tests | |
parent | 16915116e0a1cc406a6ff39e0a01ab3497b188f5 (diff) | |
download | searxng-7fd7bd75ff6bac2943d31db8a6816a0f8e6f85e1.tar.gz searxng-7fd7bd75ff6bac2943d31db8a6816a0f8e6f85e1.zip |
follow up tests
Diffstat (limited to 'tests')
-rw-r--r-- | tests/unit/engines/test_piratebay.py | 6 |
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) |