Skip to content

Commit

Permalink
chore: use gapic-generator-python 0.50.4 (#174)
Browse files Browse the repository at this point in the history
  • Loading branch information
gcf-owl-bot[bot] authored Jul 12, 2021
1 parent 553eed9 commit 3219838
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 3 additions & 1 deletion bigquery-datatransfer/snippets/manage_transfer_configs.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,9 @@ def schedule_backfill(override_values={}):
)

response = transfer_client.schedule_transfer_runs(
parent=transfer_config_name, start_time=start_time, end_time=end_time,
parent=transfer_config_name,
start_time=start_time,
end_time=end_time,
)

print("Started transfer runs:")
Expand Down
3 changes: 2 additions & 1 deletion bigquery-datatransfer/snippets/run_notification_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@

def test_run_notification(capsys, transfer_config_name, pubsub_topic):
run_notification.run_notification(
transfer_config_name=transfer_config_name, pubsub_topic=pubsub_topic,
transfer_config_name=transfer_config_name,
pubsub_topic=pubsub_topic,
)
out, _ = capsys.readouterr()
assert "Updated config:" in out
Expand Down

0 comments on commit 3219838

Please sign in to comment.