This is an automated email from the ASF dual-hosted git repository.
potiuk 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 df3569cf48 Fix dynamodb test (#31316)
df3569cf48 is described below
commit df3569cf489ce8ef26f5b4d9d9c3826d3daad5f2
Author: Pankaj Singh <[email protected]>
AuthorDate: Tue May 16 18:09:34 2023 +0530
Fix dynamodb test (#31316)
---
tests/system/providers/amazon/aws/example_dynamodb.py | 1 +
1 file changed, 1 insertion(+)
diff --git a/tests/system/providers/amazon/aws/example_dynamodb.py
b/tests/system/providers/amazon/aws/example_dynamodb.py
index 37bea8f2b9..119255aaae 100644
--- a/tests/system/providers/amazon/aws/example_dynamodb.py
+++ b/tests/system/providers/amazon/aws/example_dynamodb.py
@@ -72,6 +72,7 @@ with DAG(
env_id = test_context[ENV_ID_KEY]
table_name = f"{env_id}-dynamodb-table"
create_table = create_table(table_name=table_name)
+ delete_table = delete_table(table_name)
# [START howto_sensor_dynamodb]
dynamodb_sensor = DynamoDBValueSensor(