Skip to content

Commit 9ded5f6

Browse files
dhermeslukesneeringer
authored andcommitted
Fixing usage of http= vs. _http= in core unit test. (googleapis#3243)
Issue caused by two unrelated PRs merging in close proximity: googleapis#3235 and googleapis#3230.
1 parent 67f9d4d commit 9ded5f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/tests/unit/test_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def test_unpickleable(self):
5353
CREDENTIALS = _make_credentials()
5454
HTTP = object()
5555

56-
client_obj = self._make_one(credentials=CREDENTIALS, http=HTTP)
56+
client_obj = self._make_one(credentials=CREDENTIALS, _http=HTTP)
5757
with self.assertRaises(pickle.PicklingError):
5858
pickle.dumps(client_obj)
5959

0 commit comments

Comments
 (0)