Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix doc strings for bigquery tests #27794

Merged
merged 1 commit into from
Nov 19, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions tests/providers/google/cloud/operators/test_bigquery.py
Original file line number Diff line number Diff line change
Expand Up @@ -1123,7 +1123,7 @@ def test_execute_no_force_rerun(self, mock_hook):
def test_bigquery_insert_job_operator_async(mock_hook):
"""
Asserts that a task is deferred and a BigQueryInsertJobTrigger will be fired
when the BigQueryInsertJobAsyncOperator is executed.
when the BigQueryInsertJobOperator is executed with deferrable=True.
"""
job_id = "123456"
hash_ = "hash"
Expand Down Expand Up @@ -1370,7 +1370,7 @@ def test_execute_force_rerun_async(mock_hook):
def test_bigquery_check_operator_async(mock_hook):
"""
Asserts that a task is deferred and a BigQueryCheckTrigger will be fired
when the BigQueryCheckAsyncOperator is executed.
when the BigQueryCheckOperator is executed with deferrable=True.
"""
job_id = "123456"
hash_ = "hash"
Expand Down Expand Up @@ -1495,7 +1495,7 @@ def test_bigquery_interval_check_operator_execute_failure():
def test_bigquery_interval_check_operator_async(mock_hook):
"""
Asserts that a task is deferred and a BigQueryIntervalCheckTrigger will be fired
when the BigQueryIntervalCheckAsyncOperator is executed.
when the BigQueryIntervalCheckOperator is executed with deferrable=True.
"""
job_id = "123456"
hash_ = "hash"
Expand Down Expand Up @@ -1523,7 +1523,7 @@ def test_bigquery_interval_check_operator_async(mock_hook):
def test_bigquery_get_data_operator_async_with_selected_fields(mock_hook):
"""
Asserts that a task is deferred and a BigQuerygetDataTrigger will be fired
when the BigQueryGetDataAsyncOperator is executed.
when the BigQueryGetDataOperator is executed with deferrable=True.
"""
job_id = "123456"
hash_ = "hash"
Expand All @@ -1550,7 +1550,7 @@ def test_bigquery_get_data_operator_async_with_selected_fields(mock_hook):
def test_bigquery_get_data_operator_async_without_selected_fields(mock_hook):
"""
Asserts that a task is deferred and a BigQueryGetDataTrigger will be fired
when the BigQueryGetDataAsyncOperator is executed.
when the BigQueryGetDataOperator is executed with deferrable=True.
"""
job_id = "123456"
hash_ = "hash"
Expand Down