From d2d014a4e90640b5bef8e3ba239d445fa502028b Mon Sep 17 00:00:00 2001 From: Nikolaos-Digenis Karagiannis Date: Thu, 3 Jul 2014 09:32:52 +0300 Subject: [PATCH] selector.__repr__ test, repr type is bytesarray --- scrapy/tests/test_selector.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scrapy/tests/test_selector.py b/scrapy/tests/test_selector.py index 00790537b..9533bfbd2 100644 --- a/scrapy/tests/test_selector.py +++ b/scrapy/tests/test_selector.py @@ -43,7 +43,7 @@ class SelectorTestCase(unittest.TestCase): self.assertEqual( map(repr, sel.xpath('//input/@name')), - [u"".format(40 * 'b')] + ["".format(40 * 'b')] ) def test_select_unicode_query(self):