Skip to content

Commit

Permalink
chore: add test to cover not sending empty array when other has data
Browse files Browse the repository at this point in the history
  • Loading branch information
ewanharris committed Feb 12, 2024
1 parent 92f935c commit c6648e2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions test/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -1341,6 +1341,7 @@ async def test_delete_batch(self, mock_request):
user="user:81684243-9356-4421-8fbf-a4f8d36aa31b",
)
],
writes=[],
)
transaction = WriteTransactionOpts(
disabled=True, max_per_chunk=1, max_parallel_requests=10)
Expand Down
1 change: 1 addition & 0 deletions test/test_client_sync.py
Original file line number Diff line number Diff line change
Expand Up @@ -1341,6 +1341,7 @@ def test_delete_batch(self, mock_request):
user="user:81684243-9356-4421-8fbf-a4f8d36aa31b",
)
],
writes=[],
)
transaction = WriteTransactionOpts(
disabled=True, max_per_chunk=1, max_parallel_requests=10)
Expand Down

0 comments on commit c6648e2

Please sign in to comment.