mirror of
https://github.com/scrapy/scrapy.git
synced 2025-02-26 17:24:38 +00:00
Fixed syntax error in test
--HG-- extra : convert_revision : svn%3Ab85faa78-f9eb-468e-a121-7cced6da292c%40762
This commit is contained in:
parent
f6021cad2c
commit
9209dbc882
@ -55,7 +55,7 @@ class RobustScrapedItemTestCase(unittest.TestCase):
|
||||
self.item.attribute('children', 'Jimmy', add=True)
|
||||
self.assertEqual(self.item.children, ['Ken', 'Tom', 'Jimmy'])
|
||||
|
||||
self.item.attribute('children', *['Johnny', 'Rodrigo'], add=True)
|
||||
self.item.attribute('children', 'Johnny', 'Rodrigo', add=True)
|
||||
self.assertEqual(self.item.children, ['Ken', 'Tom', 'Jimmy', 'Johnny', 'Rodrigo'])
|
||||
|
||||
def test_set_adaptors(self):
|
||||
|
Loading…
x
Reference in New Issue
Block a user