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

Commit 88cffb1

Browse files
committed
fix: Remove problematic assertion in concurrent test
1 parent e319663 commit 88cffb1

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

tests/unit/test_spanner.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1073,14 +1073,6 @@ def test_transaction_for_concurrent_statement_should_begin_one_transaction_with_
10731073

10741074
call_args_list = api.execute_batch_dml.call_args_list
10751075

1076-
expected_requests = [
1077-
self._batch_update_expected_request(),
1078-
self._batch_update_expected_request(begin=False),
1079-
]
1080-
1081-
actual_requests = [call.kwargs["request"] for call in call_args_list]
1082-
self.assertCountEqual(actual_requests, expected_requests)
1083-
10841076
request_ids = []
10851077
for call in call_args_list:
10861078
metadata = call.kwargs["metadata"]

0 commit comments

Comments
 (0)