From 09a5b14f90a8872f88e809146c8ce1538ad58357 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 30 Sep 2024 05:10:39 +0000 Subject: [PATCH] chore: auto fixes from pre-commit.com hooks --- tests/unit/modules/network/iosxr/test_iosxr_static_routes.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/unit/modules/network/iosxr/test_iosxr_static_routes.py b/tests/unit/modules/network/iosxr/test_iosxr_static_routes.py index be3ca5bf..88c86369 100644 --- a/tests/unit/modules/network/iosxr/test_iosxr_static_routes.py +++ b/tests/unit/modules/network/iosxr/test_iosxr_static_routes.py @@ -194,7 +194,7 @@ def test_iosxr_static_routes_merged_vrf_ipv4(self): "router static", "vrf TEST_VRF", "address-family ipv4 unicast", - "192.1.0.0/24 GigabitEthernet0/0/0/1" + "192.1.0.0/24 GigabitEthernet0/0/0/1", ] self.execute_module(changed=True, commands=commands) @@ -229,7 +229,7 @@ def test_iosxr_static_routes_merged_vrf_ipv6(self): "router static", "vrf TEST_VRF", "address-family ipv6 unicast", - "2002:db5::/64 GigabitEthernet0/0/0/2" + "2002:db5::/64 GigabitEthernet0/0/0/2", ] self.execute_module(changed=True, commands=commands)