Skip to content

Commit

Permalink
fix assignment
Browse files Browse the repository at this point in the history
  • Loading branch information
larkee committed Mar 12, 2020
1 parent ef2a9a6 commit 4e16212
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/unit/test__helpers.py
Expand Up @@ -39,7 +39,8 @@ def test_base_dict_and_merge_none(self):
def test_base_empty_and_merge_empty(self):
from google.cloud.spanner_v1.proto.spanner_pb2 import ExecuteSqlRequest

base = merge = ExecuteSqlRequest.QueryOptions()
base = ExecuteSqlRequest.QueryOptions()
merge = ExecuteSqlRequest.QueryOptions()
result = self._callFUT(base, merge)
self.assertIsNone(result)

Expand Down

0 comments on commit 4e16212

Please sign in to comment.