We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f894ab9 commit a7ce56cCopy full SHA for a7ce56c
tests/unit/test_blob.py
@@ -5923,7 +5923,7 @@ def test_downloads_w_client_custom_headers(self):
5923
blob._do_download.assert_called()
5924
called_headers = blob._do_download.call_args.args[-4]
5925
self.assertIsInstance(called_headers, dict)
5926
- self.assertDictContainsSubset(custom_headers, called_headers)
+ self.assertLessEqual(custom_headers.items(), called_headers.items())
5927
5928
5929
class Test__quote(unittest.TestCase):
0 commit comments