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

vincbeck 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 0347bfff90 Fix invalid rule name in example_eventbridge.py (#33015)
0347bfff90 is described below

commit 0347bfff90810d90f5db85a8111285fa9b39fe25
Author: Maham Ali <[email protected]>
AuthorDate: Tue Aug 1 13:14:50 2023 -0700

    Fix invalid rule name in example_eventbridge.py (#33015)
---
 tests/system/providers/amazon/aws/example_eventbridge.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/system/providers/amazon/aws/example_eventbridge.py 
b/tests/system/providers/amazon/aws/example_eventbridge.py
index ed68be3bd1..4d052ee510 100644
--- a/tests/system/providers/amazon/aws/example_eventbridge.py
+++ b/tests/system/providers/amazon/aws/example_eventbridge.py
@@ -56,7 +56,7 @@ with DAG(
     # [START howto_operator_eventbridge_put_rule]
     put_rule = EventBridgePutRuleOperator(
         task_id="put_rule_task",
-        name="Example Rule",
+        name="example_rule",
         event_pattern='{"source": ["example.myapp"]}',
         description="This rule matches events from example.myapp.",
     )

Reply via email to