|
4 | 4 | {% for mode in ["", "async"] %} |
5 | 5 | {% if mode == "async" %} |
6 | 6 | @pytest.mark.asyncio |
7 | | -async def test_delete_operation(transport: str = "grpc"): |
| 7 | +async def test_delete_operation_async(transport: str = "grpc"): |
8 | 8 | {% else %} |
9 | 9 | def test_delete_operation(transport: str = "grpc"): |
10 | 10 | {% endif %} |
@@ -133,7 +133,7 @@ def test_delete_operation_from_dict(): |
133 | 133 | {% for mode in ["", "async"] %} |
134 | 134 | {% if mode == "async" %} |
135 | 135 | @pytest.mark.asyncio |
136 | | -async def test_cancel_operation(transport: str = "grpc"): |
| 136 | +async def test_cancel_operation_async(transport: str = "grpc"): |
137 | 137 | {% else %} |
138 | 138 | def test_cancel_operation(transport: str = "grpc"): |
139 | 139 | {% endif %} |
@@ -390,7 +390,7 @@ def test_wait_operation_from_dict(): |
390 | 390 | {% for mode in ["", "async"] %} |
391 | 391 | {% if mode == "async" %} |
392 | 392 | @pytest.mark.asyncio |
393 | | -async def test_get_operation(transport: str = "grpc"): |
| 393 | +async def test_get_operation_async(transport: str = "grpc"): |
394 | 394 | {% else %} |
395 | 395 | def test_get_operation(transport: str = "grpc"): |
396 | 396 | {% endif %} |
@@ -519,7 +519,7 @@ def test_get_operation_from_dict(): |
519 | 519 | {% for mode in ["", "async"] %} |
520 | 520 | {% if mode == "async" %} |
521 | 521 | @pytest.mark.asyncio |
522 | | -async def test_list_operations(transport: str = "grpc"): |
| 522 | +async def test_list_operations_async(transport: str = "grpc"): |
523 | 523 | {% else %} |
524 | 524 | def test_list_operations(transport: str = "grpc"): |
525 | 525 | {% endif %} |
@@ -654,7 +654,7 @@ def test_list_operations_from_dict(): |
654 | 654 | {% for mode in ["", "async"] %} |
655 | 655 | {% if mode == "async" %} |
656 | 656 | @pytest.mark.asyncio |
657 | | -async def test_list_locations(transport: str = "grpc"): |
| 657 | +async def test_list_locations_async(transport: str = "grpc"): |
658 | 658 | {% else %} |
659 | 659 | def test_list_locations(transport: str = "grpc"): |
660 | 660 | {% endif %} |
|
0 commit comments