From 5d33ae3bb9b7e798b55b17df388cef8cba59e806 Mon Sep 17 00:00:00 2001 From: Jakub Krajewski Date: Wed, 18 Sep 2024 10:37:31 +0200 Subject: [PATCH] Fix tests --- .../integration_tests/feature_profile/sdwan/test_service.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/catalystwan/integration_tests/feature_profile/sdwan/test_service.py b/catalystwan/integration_tests/feature_profile/sdwan/test_service.py index 40a4811e..ef169625 100644 --- a/catalystwan/integration_tests/feature_profile/sdwan/test_service.py +++ b/catalystwan/integration_tests/feature_profile/sdwan/test_service.py @@ -147,7 +147,7 @@ def test_update(self): dhcp_server_parcel.address_pool.network_address = Global[IPv4Address](value=IPv4Address("10.3.2.1")) dhcp_server_parcel.address_pool.subnet_mask = Global[SubnetMask](value="248.0.0.0") - parcel_id = self.api.update_parcel(self.profile_uuid, LanVpnDhcpServerParcel, parcel_id, dhcp_server_parcel).id + parcel_id = self.api.update_parcel(self.profile_uuid, dhcp_server_parcel, parcel_id).id parcel = self.api.get_parcel(self.profile_uuid, LanVpnDhcpServerParcel, parcel_id) assert isinstance(parcel.payload, LanVpnDhcpServerParcel) assert parcel.payload == dhcp_server_parcel