Skip to content

Commit ad8590a

Browse files
author
Luke Sneeringer
committed
Make the linter happy.
1 parent bbfa6a5 commit ad8590a

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

spanner/unit_tests/test_client.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,6 @@ def test_admin_api_lib_name(self):
111111
the database and instance API objects in the GAPIC.
112112
"""
113113
from google.cloud.spanner import __version__
114-
from google.cloud.spanner import client as MUT
115114
from google.cloud.gapic.spanner_admin_database import v1 as db
116115
from google.cloud.gapic.spanner_admin_instance import v1 as inst
117116

spanner/unit_tests/test_database.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -191,6 +191,7 @@ def test_spanner_api_property(self):
191191
_clients = [_client]
192192

193193
def _mock_spanner_client(*args, **kwargs):
194+
self.assertIsInstance(args, list)
194195
self.assertEqual(kwargs['lib_name'], 'gccl')
195196
self.assertEqual(kwargs['lib_version'], __version__)
196197
return _clients.pop(0)

0 commit comments

Comments
 (0)