Skip to content

Commit d675b06

Browse files
committed
Fix lint issue with method signature.
1 parent 5acf5e8 commit d675b06

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

error_reporting/unit_tests/test_client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,8 +107,8 @@ def test_report_exception_wo_gax(self):
107107
self.assertIsNotNone(target.report_errors_api)
108108

109109
@mock.patch('google.cloud.error_reporting.client.make_report_error_api')
110-
def test_report_exception_with_service_version_in_constructor(self,
111-
make_client):
110+
def test_report_exception_with_service_version_in_constructor(
111+
self, make_client):
112112
CREDENTIALS = _make_credentials()
113113
SERVICE = "notdefault"
114114
VERSION = "notdefaultversion"

spanner/unit_tests/test_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def _constructor_test_helper(self, expected_scopes, creds,
5555

5656
user_agent = user_agent or MUT.DEFAULT_USER_AGENT
5757
client = self._make_one(project=self.PROJECT, credentials=creds,
58-
user_agent=user_agent)
58+
user_agent=user_agent)
5959

6060
expected_creds = expected_creds or creds.with_scopes.return_value
6161
self.assertIs(client._credentials, expected_creds)

0 commit comments

Comments
 (0)