From b77a42d0fe79d3cb3c2693c6599105ed111f2dd4 Mon Sep 17 00:00:00 2001 From: Cathy Ouyang Date: Fri, 2 Dec 2022 13:34:25 +0800 Subject: [PATCH] tests: update snippets tests --- samples/snippets/snippets_test.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/samples/snippets/snippets_test.py b/samples/snippets/snippets_test.py index 9370ecbdd..1fdd907bd 100644 --- a/samples/snippets/snippets_test.py +++ b/samples/snippets/snippets_test.py @@ -628,8 +628,7 @@ def test_storage_configure_retries(test_blob, capsys): # This simply checks if the retry configurations were set and printed as intended. out, _ = capsys.readouterr() assert "The following library method is customized to be retried" in out - assert "_should_retry" in out - assert "initial=1.5, maximum=45.0, multiplier=1.2, deadline=500.0" in out + assert "deleted with a customized retry strategy" in out def test_batch_request(test_bucket):