mirror of https://github.com/scrapy/scrapy.git
Fix csviter tests by explicitly using newline only
This commit is contained in:
parent
ca53a8699a
commit
cb28175750
|
|
@ -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):
|
||||
|
|
|
|||
Loading…
Reference in New Issue