From c95f717ef2833e0cd57599105c24cd7ca088972b Mon Sep 17 00:00:00 2001 From: Pablo Hoffman Date: Wed, 22 Aug 2012 13:50:23 -0300 Subject: [PATCH] fixed typo in tests --- scrapy/tests/test_contrib_exporter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scrapy/tests/test_contrib_exporter.py b/scrapy/tests/test_contrib_exporter.py index b3fb1fc47..e5c03c87a 100644 --- a/scrapy/tests/test_contrib_exporter.py +++ b/scrapy/tests/test_contrib_exporter.py @@ -183,7 +183,7 @@ class JsonLinesItemExporterTest(BaseItemExporterTest): self.assertEqual(exported, dict(self.i)) def test_nested_item(self): - i1 = TestItem(name=u'Joseph\xa3', age='22') + i1 = TestItem(name=u'Joseph', age='22') i2 = TestItem(name=u'Maria', age=i1) i3 = TestItem(name=u'Jesus', age=i2) self.ie.start_exporting()