From 3ed0d9d1a02dc11a5590d3368ad811811ad8adfe Mon Sep 17 00:00:00 2001 From: Jason Novinger Date: Thu, 21 May 2026 13:42:44 -0500 Subject: [PATCH] Fix missing ProviderNetwork import after rebase --- netbox/circuits/tests/test_models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netbox/circuits/tests/test_models.py b/netbox/circuits/tests/test_models.py index 20ec7e3e1..bffeba301 100644 --- a/netbox/circuits/tests/test_models.py +++ b/netbox/circuits/tests/test_models.py @@ -3,7 +3,7 @@ from django.core.exceptions import NON_FIELD_ERRORS, ValidationError from django.test import TestCase from model_bakery import baker -from circuits.models import CircuitTermination +from circuits.models import CircuitTermination, ProviderNetwork class CircuitTerminationTestCase(TestCase):