Skip to content

Commit

Permalink
Fix misspelling (change "parallell" to "parallel") (#481)
Browse files Browse the repository at this point in the history
  • Loading branch information
deepyaman authored Aug 13, 2020
1 parent 7ca3522 commit f793851
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/runner/test_parallel_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -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])
Expand Down Expand Up @@ -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:
Expand Down Expand Up @@ -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:
Expand Down Expand Up @@ -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:
Expand Down

0 comments on commit f793851

Please sign in to comment.