some small semantics errors fixed in xpath test

--HG--
extra : convert_revision : svn%3Ab85faa78-f9eb-468e-a121-7cced6da292c%40222
This commit is contained in:
elpolilla 2008-09-11 12:13:33 +00:00
parent d8b7f41ee5
commit 06964cf36b
1 changed files with 5 additions and 5 deletions

View File

@ -1,11 +1,13 @@
import os
import re
import unittest
import libxml2
from scrapy.http import Response
from scrapy.xpath.selector import XPathSelector, XmlXPathSelector, HtmlXPathSelector
from scrapy.xpath.selector import XmlXPathSelector, HtmlXPathSelector
if __name__ == "__main__":
unittest.main()
class XPathTestCase(unittest.TestCase):
@ -192,7 +194,7 @@ class XPathTestCase(unittest.TestCase):
u'<root>lala</root>')
def test_unquote(self):
xmldoc='\n'.join((
xmldoc = '\n'.join((
'<root>',
' lala',
' <node>',
@ -221,5 +223,3 @@ class XPathTestCase(unittest.TestCase):
u'\n ',
u'\n pff\n'])
if __name__ == "__main__":
unittest.main()