From 3e3dc7327179cf8b8a45a66e93c20ddcfa02b603 Mon Sep 17 00:00:00 2001 From: Gaurav Aradhye Date: Tue, 27 May 2014 14:37:07 +0530 Subject: [PATCH] CLOUDSTACK-6726: Fixing BVT test case test_network.py --- test/integration/smoke/test_network.py | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/test/integration/smoke/test_network.py b/test/integration/smoke/test_network.py index a9e0c25a36d..52efc32e0f2 100644 --- a/test/integration/smoke/test_network.py +++ b/test/integration/smoke/test_network.py @@ -389,12 +389,13 @@ class TestPortForwarding(cloudstackTestCase): try: nat_rule.delete(self.apiclient) - list_nat_rule_response = list_nat_rules( - self.apiclient, - id=nat_rule.id - ) - except CloudstackAPIException: - self.fail("Nat Rule Deletion or Listing Failed") + except Exception as e: + self.fail("NAT Rule Deletion Failed: %s" % e) + + # NAT rule listing should fail as the nat rule does not exist + with self.assertRaises(Exception): + list_nat_rules(self.apiclient, + id=nat_rule.id) # Check if the Public SSH port is inaccessible with self.assertRaises(Exception):