Skip to content

Commit

Permalink
fixup! fixup! Fix Airflow Tests after #9178
Browse files Browse the repository at this point in the history
  • Loading branch information
kaxil committed Jun 12, 2020
1 parent ded9069 commit fbadc2c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/executors/test_dask_executor.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,12 @@
class TestBaseDask(unittest.TestCase):

def assert_tasks_on_executor(self, executor):

success_command = ['airflow', 'tasks', 'run', '--help']
fail_command = ['airflow', 'tasks', 'run', 'false']
# start the executor
executor.start()

success_command = ['true', 'some_parameter']
fail_command = ['false', 'some_parameter']

executor.execute_async(key='success', command=success_command)
executor.execute_async(key='fail', command=fail_command)

Expand Down

0 comments on commit fbadc2c

Please sign in to comment.