mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-14 01:41:22 -06:00
Fix virtualization test and add to changelog
This commit is contained in:
parent
c032413201
commit
7f6d79362e
@ -7,6 +7,7 @@ v2.5.10 (FUTURE)
|
|||||||
* [#3041](https://github.com/digitalocean/netbox/issues/3041) - Fix form widget for bulk cable label update
|
* [#3041](https://github.com/digitalocean/netbox/issues/3041) - Fix form widget for bulk cable label update
|
||||||
* [#3044](https://github.com/digitalocean/netbox/issues/3044) - Ignore site/rack fields when connecting a new cable via device search
|
* [#3044](https://github.com/digitalocean/netbox/issues/3044) - Ignore site/rack fields when connecting a new cable via device search
|
||||||
* [#3046](https://github.com/digitalocean/netbox/issues/3046) - Fix exception at reports API endpoint
|
* [#3046](https://github.com/digitalocean/netbox/issues/3046) - Fix exception at reports API endpoint
|
||||||
|
* [#3047](https://github.com/digitalocean/netbox/issues/3047) - Fix exception when writing mac address for an interface via API
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
@ -622,7 +622,7 @@ class InterfaceTest(APITestCase):
|
|||||||
|
|
||||||
def test_delete_interface(self):
|
def test_delete_interface(self):
|
||||||
|
|
||||||
url = reverse('dcim-api:interface-detail', kwargs={'pk': self.interface1.pk})
|
url = reverse('virtualization-api:interface-detail', kwargs={'pk': self.interface1.pk})
|
||||||
response = self.client.delete(url, **self.header)
|
response = self.client.delete(url, **self.header)
|
||||||
|
|
||||||
self.assertHttpStatus(response, status.HTTP_204_NO_CONTENT)
|
self.assertHttpStatus(response, status.HTTP_204_NO_CONTENT)
|
||||||
|
Loading…
Reference in New Issue
Block a user