From f7938517afa42aa83aa2647bc419d0d0c1db76c3 Mon Sep 17 00:00:00 2001 From: Deepyaman Datta Date: Thu, 13 Aug 2020 11:01:52 -0400 Subject: [PATCH] Fix misspelling (change "parallell" to "parallel") (#481) --- tests/runner/test_parallel_runner.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/runner/test_parallel_runner.py b/tests/runner/test_parallel_runner.py index d0e5455be9..e4bb322daa 100644 --- a/tests/runner/test_parallel_runner.py +++ b/tests/runner/test_parallel_runner.py @@ -137,7 +137,7 @@ def test_memory_data_set_input(self, is_async, fan_out_fan_in): @pytest.mark.skipif( - sys.platform.startswith("win"), reason="Due to bug in parallell runner" + sys.platform.startswith("win"), reason="Due to bug in parallel runner" ) class TestMaxWorkers: @pytest.mark.parametrize("is_async", [False, True]) @@ -195,7 +195,7 @@ def test_max_worker_windows(self, mocker): @pytest.mark.skipif( - sys.platform.startswith("win"), reason="Due to bug in parallell runner" + sys.platform.startswith("win"), reason="Due to bug in parallel runner" ) @pytest.mark.parametrize("is_async", [False, True]) class TestInvalidParallelRunner: @@ -280,7 +280,7 @@ def decorated_fan_out_fan_in(): @pytest.mark.skipif( - sys.platform.startswith("win"), reason="Due to bug in parallell runner" + sys.platform.startswith("win"), reason="Due to bug in parallel runner" ) @pytest.mark.parametrize("is_async", [False, True]) class TestParallelRunnerDecorator: @@ -330,7 +330,7 @@ def _describe(self) -> Dict[str, Any]: @pytest.mark.skipif( - sys.platform.startswith("win"), reason="Due to bug in parallell runner" + sys.platform.startswith("win"), reason="Due to bug in parallel runner" ) @pytest.mark.parametrize("is_async", [False, True]) class TestParallelRunnerRelease: