mirror of
https://github.com/netbox-community/netbox.git
synced 2025-12-24 05:06:52 +00:00
* fix(forms): Call super().clean() in clean methods Adds a call to super().clean() in the clean methods of object creation forms. This ensures base class validation logic is executed properly before custom logic is applied. Fixes #19041 * test(forms): Add tests for front port form validation Introduces unit tests for validating FrontPortCreateForm behavior. Tests include scenarios for matching and mismatched name-label pairs to ensure proper form validation logic. Fixes #19041 * Omit errant print statement --------- Co-authored-by: Jeremy Stretch <jstretch@netboxlabs.com>