Skip to content

Commit

Permalink
remove usage of deprecated assertDictContainsSubset python/cpython#28268
Browse files Browse the repository at this point in the history
  • Loading branch information
parthea committed Nov 29, 2023
1 parent f894ab9 commit a7ce56c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/unit/test_blob.py
Original file line number Diff line number Diff line change
Expand Up @@ -5923,7 +5923,7 @@ def test_downloads_w_client_custom_headers(self):
blob._do_download.assert_called()
called_headers = blob._do_download.call_args.args[-4]
self.assertIsInstance(called_headers, dict)
self.assertDictContainsSubset(custom_headers, called_headers)
self.assertLessEqual(custom_headers.items(), called_headers.items())


class Test__quote(unittest.TestCase):
Expand Down

0 comments on commit a7ce56c

Please sign in to comment.