Skip to content

Commit

Permalink
chore(deps): update dependency google-cloud-storage to v2.6.0 (#67)
Browse files Browse the repository at this point in the history
* chore(deps): update dependency google-cloud-storage to v2.6.0

* Fixing the test

Co-authored-by: Anthonios Partheniou <partheniou@google.com>
  • Loading branch information
renovate-bot and parthea authored Nov 9, 2022
1 parent 6fb9ca0 commit 25c5edf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/google-cloud-batch/samples/requirements-test.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pytest==7.2.0
google-cloud-compute==1.6.1
google-cloud-resource-manager==1.6.3
google-cloud-storage==2.5.0
google-cloud-storage==2.6.0
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def _check_logs(job, capsys):
print_job_logs(PROJECT, job)
output = [line for line in capsys.readouterr().out.splitlines(keepends=False) if line != ""]
assert len(output) == 4
assert all(log_msg.startswith("STDOUT") for log_msg in output)
assert all("Hello world!" in log_msg for log_msg in output)


def test_script_job(job_name, capsys):
Expand Down

0 comments on commit 25c5edf

Please sign in to comment.