@@ -757,7 +757,7 @@ async def test_write(self, mock_request):
757757 )
758758 ],
759759 )
760- await api_client .writes (
760+ await api_client .write (
761761 body ,
762762 options = {"authorization_model_id" : "01G5JAVJ41T49E9TT3SKVS7X1J" }
763763 )
@@ -794,7 +794,7 @@ async def test_delete(self, mock_request):
794794 )
795795 ],
796796 )
797- await api_client .writes (
797+ await api_client .write (
798798 body ,
799799 options = {"authorization_model_id" : "01G5JAVJ41T49E9TT3SKVS7X1J" }
800800 )
@@ -847,7 +847,7 @@ async def test_write_batch(self, mock_request):
847847 )
848848 transaction = WriteTransaction (
849849 disabled = True , max_per_chunk = 1 , max_parallel_requests = 10 )
850- response = await api_client .writes (
850+ response = await api_client .write (
851851 body ,
852852 options = {"authorization_model_id" : "01G5JAVJ41T49E9TT3SKVS7X1J" ,
853853 "transaction" : transaction }
@@ -961,7 +961,7 @@ async def test_write_batch_min_parallel(self, mock_request):
961961 ],
962962 )
963963 transaction = WriteTransaction (disabled = True , max_per_chunk = 1 , max_parallel_requests = 1 )
964- response = await api_client .writes (
964+ response = await api_client .write (
965965 body ,
966966 options = {"authorization_model_id" : "01G5JAVJ41T49E9TT3SKVS7X1J" ,
967967 "transaction" : transaction }
@@ -1074,7 +1074,7 @@ async def test_write_batch_larger_chunk(self, mock_request):
10741074 ],
10751075 )
10761076 transaction = WriteTransaction (disabled = True , max_per_chunk = 2 , max_parallel_requests = 2 )
1077- response = await api_client .writes (
1077+ response = await api_client .write (
10781078 body ,
10791079 options = {"authorization_model_id" : "01G5JAVJ41T49E9TT3SKVS7X1J" ,
10801080 "transaction" : transaction }
@@ -1185,7 +1185,7 @@ async def test_write_batch_failed(self, mock_request):
11851185 )
11861186 transaction = WriteTransaction (
11871187 disabled = True , max_per_chunk = 1 , max_parallel_requests = 10 )
1188- response = await api_client .writes (
1188+ response = await api_client .write (
11891189 body ,
11901190 options = {"authorization_model_id" : "01G5JAVJ41T49E9TT3SKVS7X1J" ,
11911191 "transaction" : transaction }
@@ -1289,7 +1289,7 @@ async def test_delete_batch(self, mock_request):
12891289 )
12901290 transaction = WriteTransaction (
12911291 disabled = True , max_per_chunk = 1 , max_parallel_requests = 10 )
1292- await api_client .writes (
1292+ await api_client .write (
12931293 body ,
12941294 options = {"authorization_model_id" : "01G5JAVJ41T49E9TT3SKVS7X1J" ,
12951295 "transaction" : transaction }
@@ -1425,7 +1425,7 @@ async def test_write_batch_unauthorized(self, mock_request):
14251425 )
14261426 transaction = WriteTransaction (
14271427 disabled = True , max_per_chunk = 1 , max_parallel_requests = 10 )
1428- await api_client .writes (
1428+ await api_client .write (
14291429 body ,
14301430 options = {"authorization_model_id" : "01G5JAVJ41T49E9TT3SKVS7X1J" ,
14311431 "transaction" : transaction }
0 commit comments