From 58f2f84122b2be108e925beed33529de26422129 Mon Sep 17 00:00:00 2001 From: Justin Drew <2396364+jdrew82@users.noreply.github.com> Date: Tue, 7 Jan 2025 13:59:44 -0600 Subject: [PATCH] =?UTF-8?q?test:=20=E2=9C=85=20Tweak=20creation=20of=20Pre?= =?UTF-8?q?fix=20to=20account=20for=20bug=20in=20stable.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- nautobot_ssot/tests/infoblox/test_tags_and_cfs.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/nautobot_ssot/tests/infoblox/test_tags_and_cfs.py b/nautobot_ssot/tests/infoblox/test_tags_and_cfs.py index f4113c490..e5b91dda3 100644 --- a/nautobot_ssot/tests/infoblox/test_tags_and_cfs.py +++ b/nautobot_ssot/tests/infoblox/test_tags_and_cfs.py @@ -127,8 +127,7 @@ def test_objects_synced_to_infoblox_are_tagged(self): """Ensure objects synced to Infoblox have 'SSoT Synced to Infoblox' tag applied.""" create_prefix_relationship() nb_prefix = Prefix( - network="10.0.0.0", - prefix_length=8, + prefix="10.0.0.0/8", description="Test Network", type="network", status=Status.objects.get_for_model(Prefix).first(), @@ -204,8 +203,7 @@ def test_cfs_have_correct_content_types_set(self): def test_cf_updated_for_objects_synced_to_infoblox(self): """Ensure objects synced to Infoblox have cf 'ssot_synced_to_infoblox' correctly updated.""" nb_prefix = Prefix( - network="10.0.0.0", - prefix_length=8, + prefix="10.0.0.0/8", description="Test Network", type="network", status=Status.objects.get_for_model(Prefix).first(),