From 8ae77fdb34d862b4ad466f7f9764132502787c47 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Sun, 18 Dec 2022 20:26:18 -0500 Subject: [PATCH] spelling: pipeline Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- tests/pipelines.py | 2 +- tests/test_engine.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/pipelines.py b/tests/pipelines.py index fed2af7d3..c130f057f 100644 --- a/tests/pipelines.py +++ b/tests/pipelines.py @@ -12,7 +12,7 @@ class ZeroDivisionErrorPipeline: return item -class ProcessWithZeroDivisionErrorPipiline: +class ProcessWithZeroDivisionErrorPipeline: def process_item(self, item, spider): 1 / 0 diff --git a/tests/test_engine.py b/tests/test_engine.py index aa3313659..870993edf 100644 --- a/tests/test_engine.py +++ b/tests/test_engine.py @@ -109,7 +109,7 @@ class DataClassItemsSpider(TestSpider): class ItemZeroDivisionErrorSpider(TestSpider): custom_settings = { "ITEM_PIPELINES": { - "tests.pipelines.ProcessWithZeroDivisionErrorPipiline": 300, + "tests.pipelines.ProcessWithZeroDivisionErrorPipeline": 300, } }