From 05930a0e6b964157a140b00b7f8c750d7569cef4 Mon Sep 17 00:00:00 2001 From: Alex Gittings Date: Wed, 24 Apr 2024 11:54:51 +0100 Subject: [PATCH] Fix total changes count --- netbox/netbox/tests/test_staging.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netbox/netbox/tests/test_staging.py b/netbox/netbox/tests/test_staging.py index 431ef03c6..a17c9f953 100644 --- a/netbox/netbox/tests/test_staging.py +++ b/netbox/netbox/tests/test_staging.py @@ -70,7 +70,7 @@ class StagingTestCase(TransactionTestCase): # Verify that changes have been rolled back after exiting the context self.assertEqual(Provider.objects.count(), 3) self.assertEqual(Circuit.objects.count(), 9) - self.assertEqual(StagedChange.objects.count(), 5) + self.assertEqual(StagedChange.objects.count(), 6) self.assertEqual(Location.objects.count(), 0) # Verify that changes are replayed upon entering the context