logo

searx

My custom branche(s) on searx, a meta-search engine git clone https://hacktivis.me/git/searx.git
commit: c7c6c35ccd7373d2107b70b92badb9b70d31905f
parent 01d2fb9f703fee2a28cdb4c6583158054f9d7558
Author: Kang-min Liu <gugod@gugod.org>
Date:   Sat, 14 Nov 2015 00:02:36 +0100

fix test faliures of btdigg engine.

This fix the test failures related to 01d2fb9f703fee2a28cdb4c6583158054f9d7558

Diffstat:

Msearx/tests/engines/test_btdigg.py8++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/searx/tests/engines/test_btdigg.py b/searx/tests/engines/test_btdigg.py @@ -22,7 +22,7 @@ class TestBtdiggEngine(SearxTestCase): self.assertRaises(AttributeError, btdigg.response, '') self.assertRaises(AttributeError, btdigg.response, '[]') - response = mock.Mock(text='<html></html>') + response = mock.Mock(content='<html></html>') self.assertEqual(btdigg.response(response), []) html = """ @@ -82,7 +82,7 @@ class TestBtdiggEngine(SearxTestCase): </table> </div> """ - response = mock.Mock(text=html) + response = mock.Mock(content=html) results = btdigg.response(response) self.assertEqual(type(results), list) self.assertEqual(len(results), 1) @@ -101,7 +101,7 @@ class TestBtdiggEngine(SearxTestCase): </table> </div> """ - response = mock.Mock(text=html) + response = mock.Mock(content=html) results = btdigg.response(response) self.assertEqual(type(results), list) self.assertEqual(len(results), 0) @@ -367,7 +367,7 @@ class TestBtdiggEngine(SearxTestCase): </table> </div> """ - response = mock.Mock(text=html) + response = mock.Mock(content=html) results = btdigg.response(response) self.assertEqual(type(results), list) self.assertEqual(len(results), 5)