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

uranusjr 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 4c5ddc19fe Fix BigQuery Sensors system test (#24245)
4c5ddc19fe is described below

commit 4c5ddc19fe17e5119800735bf8888bc40cc67210
Author: BartÅ‚omiej Hirsz <[email protected]>
AuthorDate: Mon Jun 6 10:28:53 2022 +0200

    Fix BigQuery Sensors system test (#24245)
    
    Co-authored-by: Bartlomiej Hirsz <[email protected]>
---
 tests/system/providers/google/bigquery/example_bigquery_sensors.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/system/providers/google/bigquery/example_bigquery_sensors.py 
b/tests/system/providers/google/bigquery/example_bigquery_sensors.py
index edd9db51ba..b201fdfd3d 100644
--- a/tests/system/providers/google/bigquery/example_bigquery_sensors.py
+++ b/tests/system/providers/google/bigquery/example_bigquery_sensors.py
@@ -48,7 +48,7 @@ INSERT_DATE = datetime.now().strftime("%Y-%m-%d")
 
 PARTITION_NAME = "{{ ds_nodash }}"
 
-INSERT_ROWS_QUERY = f"INSERT {DATASET_NAME}.{TABLE_NAME} VALUES (42, '{{ ds 
}}')"
+INSERT_ROWS_QUERY = f"INSERT {DATASET_NAME}.{TABLE_NAME} VALUES (42, '{{{{ ds 
}}}}')"
 
 SCHEMA = [
     {"name": "value", "type": "INTEGER", "mode": "REQUIRED"},

Reply via email to