exception assert fix

This commit is contained in:
Daan Hoogland 2021-02-22 14:51:37 +00:00
parent 4b1dfd137c
commit b351ff52ca
1 changed files with 1 additions and 1 deletions

View File

@ -74,5 +74,5 @@ class TestPVLAN(cloudstackTestCase):
createNetworkCmd.startipv6="fc00:1234::10"
createNetworkCmd.endipv6="fc00:1234::20"
err = 0
with helper.assertRaises(CloudstackAPIException):
with self.assertRaises(CloudstackAPIException):
self.apiClient.createNetwork(createNetworkCmd)