From b351ff52cad36d18007eb9c503db84ed2032dbfc Mon Sep 17 00:00:00 2001 From: Daan Hoogland Date: Mon, 22 Feb 2021 14:51:37 +0000 Subject: [PATCH] exception assert fix --- test/integration/smoke/test_pvlan.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/smoke/test_pvlan.py b/test/integration/smoke/test_pvlan.py index ca4e0636541..d7d5d3efb03 100644 --- a/test/integration/smoke/test_pvlan.py +++ b/test/integration/smoke/test_pvlan.py @@ -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)