You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by je...@apache.org on 2022/09/23 22:48:09 UTC

[airflow] branch main updated: Fix one_done trigger rule tests (#26642)

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

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


The following commit(s) were added to refs/heads/main by this push:
     new d95f21b197 Fix one_done trigger rule tests (#26642)
d95f21b197 is described below

commit d95f21b19777a4498663410cf2f8bcabdbccd3da
Author: Jed Cunningham <66...@users.noreply.github.com>
AuthorDate: Fri Sep 23 15:48:01 2022 -0700

    Fix one_done trigger rule tests (#26642)
---
 tests/ti_deps/deps/test_trigger_rule_dep.py | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/tests/ti_deps/deps/test_trigger_rule_dep.py b/tests/ti_deps/deps/test_trigger_rule_dep.py
index 3a84d8a1d6..c95bfd7514 100644
--- a/tests/ti_deps/deps/test_trigger_rule_dep.py
+++ b/tests/ti_deps/deps/test_trigger_rule_dep.py
@@ -222,6 +222,7 @@ class TestTriggerRuleDep:
                 successes=2,
                 skipped=0,
                 failed=0,
+                removed=0,
                 upstream_failed=0,
                 done=2,
                 flag_upstream_failed=False,
@@ -237,6 +238,7 @@ class TestTriggerRuleDep:
                 successes=0,
                 skipped=0,
                 failed=2,
+                removed=0,
                 upstream_failed=0,
                 done=2,
                 flag_upstream_failed=False,
@@ -257,6 +259,7 @@ class TestTriggerRuleDep:
                 successes=0,
                 skipped=2,
                 failed=0,
+                removed=0,
                 upstream_failed=0,
                 done=2,
                 flag_upstream_failed=False,
@@ -278,6 +281,7 @@ class TestTriggerRuleDep:
                 successes=0,
                 skipped=0,
                 failed=0,
+                removed=0,
                 upstream_failed=2,
                 done=2,
                 flag_upstream_failed=False,