Fix csviter tests by explicitly using newline only

This commit is contained in:
Jakob de Maeyer 2016-02-03 18:35:35 +00:00 committed by Daniel Graña
parent ca53a8699a
commit cb28175750
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ from scrapy.utils.iterators import csviter, xmliter, _body_or_str, xmliter_lxml
from scrapy.http import XmlResponse, TextResponse, Response
from tests import get_testdata
FOOBAR_NL = u"foo" + os.linesep + u"bar"
FOOBAR_NL = u"foo\nbar"
class XmliterTestCase(unittest.TestCase):