Skip to content

Commit

Permalink
Removing overly broad mock.Mock() in logging.
Browse files Browse the repository at this point in the history
  • Loading branch information
dhermes committed Mar 1, 2017
1 parent 80ec376 commit 09ae157
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion logging/unit_tests/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -617,7 +617,7 @@ def test_setup_logging(self):

http_mock = mock.Mock(spec=httplib2.Http)
deepcopy = mock.Mock(return_value=http_mock)
setup_logging = mock.Mock()
setup_logging = mock.Mock(spec=[])

credentials = _make_credentials()

Expand Down

0 comments on commit 09ae157

Please sign in to comment.