mirror of https://github.com/scrapy/scrapy.git
spelling: pipeline
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
parent
f5d024f16c
commit
8ae77fdb34
|
|
@ -12,7 +12,7 @@ class ZeroDivisionErrorPipeline:
|
|||
return item
|
||||
|
||||
|
||||
class ProcessWithZeroDivisionErrorPipiline:
|
||||
class ProcessWithZeroDivisionErrorPipeline:
|
||||
|
||||
def process_item(self, item, spider):
|
||||
1 / 0
|
||||
|
|
|
|||
|
|
@ -109,7 +109,7 @@ class DataClassItemsSpider(TestSpider):
|
|||
class ItemZeroDivisionErrorSpider(TestSpider):
|
||||
custom_settings = {
|
||||
"ITEM_PIPELINES": {
|
||||
"tests.pipelines.ProcessWithZeroDivisionErrorPipiline": 300,
|
||||
"tests.pipelines.ProcessWithZeroDivisionErrorPipeline": 300,
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue