Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
pugnacity committed Oct 7, 2024
1 parent 7bebac4 commit 61d8e57
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/integration/nautobot-populate.py
Original file line number Diff line number Diff line change
Expand Up @@ -637,11 +637,11 @@ def make_nautobot_calls(endpoint, payload):
{"name": "controller_one", "location": "Child Test Location", "status": {"name": "Active"}},
{"name": "controller_two", "location": "Child Test Location", "status": {"name": "Active"}},
]
created_controller = make_nautobot_calls(nb.extras.controller, controller)
created_controller = make_nautobot_calls(nb.dcim.controllers, controller)

# Create Controller Managed Device Groups
controller_device_group = [{"name": "controller_group_one", "controller": "controller_one"}]
created_controller_device_group = make_nautobot_calls(nb.extras.controller_device_group, controller_device_group)
created_controller_device_group = make_nautobot_calls(nb.dcim.controller_device_groups, controller_device_group)

###############
# v2.3+ items #
Expand Down

0 comments on commit 61d8e57

Please sign in to comment.