Skip to content
This repository was archived by the owner on Mar 31, 2026. It is now read-only.

Commit 49a422f

Browse files
committed
fix assignment
1 parent d504e8b commit 49a422f

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

tests/unit/test__helpers.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@ def test_base_dict_and_merge_none(self):
3939
def test_base_empty_and_merge_empty(self):
4040
from google.cloud.spanner_v1.proto.spanner_pb2 import ExecuteSqlRequest
4141

42-
base = merge = ExecuteSqlRequest.QueryOptions()
42+
base = ExecuteSqlRequest.QueryOptions()
43+
merge = ExecuteSqlRequest.QueryOptions()
4344
result = self._callFUT(base, merge)
4445
self.assertIsNone(result)
4546

0 commit comments

Comments
 (0)