You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by ka...@apache.org on 2020/06/13 05:51:15 UTC

[airflow] branch master updated: Fix typo in test_dask_executor.py (#9269)

This is an automated email from the ASF dual-hosted git repository.

kamilbregula pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/master by this push:
     new f957de6  Fix typo in test_dask_executor.py (#9269)
f957de6 is described below

commit f957de622e6b87567b874cdcd64e5a1f95143e0d
Author: Kaxil Naik <ka...@gmail.com>
AuthorDate: Sat Jun 13 06:50:14 2020 +0100

    Fix typo in test_dask_executor.py (#9269)
---
 tests/executors/test_dask_executor.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/executors/test_dask_executor.py b/tests/executors/test_dask_executor.py
index ab0826b..4696b5c 100644
--- a/tests/executors/test_dask_executor.py
+++ b/tests/executors/test_dask_executor.py
@@ -66,7 +66,7 @@ class TestBaseDask(unittest.TestCase):
             if timezone.utcnow() > timeout:
                 raise ValueError(
                     'The futures should have finished; there is probably '
-                    'an error communciating with the Dask cluster.')
+                    'an error communicating with the Dask cluster.')
 
         # both tasks should have finished
         self.assertTrue(success_future.done())