From fbceb92d98a05cc6e992bcaed723a5228808bef8 Mon Sep 17 00:00:00 2001 From: Abhishek Vilas Munagekar <10258799+munagekar@users.noreply.github.com> Date: Tue, 17 May 2022 19:03:39 +0900 Subject: [PATCH] remove not required arguments in tests --- tests/unit/aiplatform/test_endpoints.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/tests/unit/aiplatform/test_endpoints.py b/tests/unit/aiplatform/test_endpoints.py index 09524fd23a..8344db5b72 100644 --- a/tests/unit/aiplatform/test_endpoints.py +++ b/tests/unit/aiplatform/test_endpoints.py @@ -1178,11 +1178,8 @@ def test_deploy_with_autoscaling_target_accelerator_duty_cycle_and_no_accelerato ) test_endpoint.deploy( model=test_model, - machine_type=_TEST_MACHINE_TYPE, - service_account=_TEST_SERVICE_ACCOUNT, sync=sync, - deploy_request_timeout=None, - autoscaling_target_accelerator_duty_cycle=70 + autoscaling_target_accelerator_duty_cycle=70, ) @pytest.mark.usefixtures("get_endpoint_mock", "get_model_mock")