Skip to content

Commit

Permalink
Fixing usage of http= vs. _http= in core unit test. (#3243)
Browse files Browse the repository at this point in the history
Issue caused by two unrelated PRs merging in close
proximity: #3235 and #3230.
  • Loading branch information
dhermes authored and lukesneeringer committed Mar 30, 2017
1 parent 0aaf359 commit 6b1475c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/tests/unit/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit 6b1475c

Please sign in to comment.