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(),