From 6b1475c31d8f72f20b728e0a67a4f90f51ce2fde Mon Sep 17 00:00:00 2001 From: Danny Hermes Date: Thu, 30 Mar 2017 09:27:51 -0700 Subject: [PATCH] Fixing usage of http= vs. _http= in core unit test. (#3243) Issue caused by two unrelated PRs merging in close proximity: #3235 and #3230. --- core/tests/unit/test_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/tests/unit/test_client.py b/core/tests/unit/test_client.py index a5ae46fb609d..21a8bccc9845 100644 --- a/core/tests/unit/test_client.py +++ b/core/tests/unit/test_client.py @@ -53,7 +53,7 @@ def test_unpickleable(self): CREDENTIALS = _make_credentials() HTTP = object() - client_obj = self._make_one(credentials=CREDENTIALS, http=HTTP) + client_obj = self._make_one(credentials=CREDENTIALS, _http=HTTP) with self.assertRaises(pickle.PicklingError): pickle.dumps(client_obj)