You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by ts...@apache.org on 2013/06/17 06:35:38 UTC

[1/2] git commit: updated refs/heads/master to e405703

Updated Branches:
  refs/heads/master ae27d664f -> e405703d5


CLOUDSTACK-3024: Invalid reference to testclient close

Testclient does not expose a close() method anymore for closing the
connection to cloudstack

Signed-off-by: Prasanna Santhanam <ts...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/e405703d
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/e405703d
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/e405703d

Branch: refs/heads/master
Commit: e405703d5c38fd42b4c91533cf50e07190fbe760
Parents: bf0265d
Author: Prasanna Santhanam <ts...@apache.org>
Authored: Mon Jun 17 10:04:26 2013 +0530
Committer: Prasanna Santhanam <ts...@apache.org>
Committed: Mon Jun 17 10:05:02 2013 +0530

----------------------------------------------------------------------
 test/integration/component/test_host_high_availability.py | 1 -
 1 file changed, 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/e405703d/test/integration/component/test_host_high_availability.py
----------------------------------------------------------------------
diff --git a/test/integration/component/test_host_high_availability.py b/test/integration/component/test_host_high_availability.py
index 57eb5ed..2fe07b1 100644
--- a/test/integration/component/test_host_high_availability.py
+++ b/test/integration/component/test_host_high_availability.py
@@ -142,7 +142,6 @@ class TestHostHighAvailability(cloudstackTestCase):
         try:
             #Clean up, terminate the created accounts, domains etc
             cleanup_resources(self.apiclient, self.cleanup)
-            self.testClient.close()
         except Exception as e:
             raise Exception("Warning: Exception during cleanup : %s" % e)
         return


[2/2] git commit: updated refs/heads/master to e405703

Posted by ts...@apache.org.
CLOUDSTACK-3020: Fix assert error

If you do not give a name during vm creation,  UUID will be set for Name
and Display name will be blank.

Signed-off-by: Prasanna Santhanam <ts...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/bf0265d2
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/bf0265d2
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/bf0265d2

Branch: refs/heads/master
Commit: bf0265d21d77dbc28bc61f46c535ca75b727d115
Parents: ae27d66
Author: rayeesn <ra...@citrix.com>
Authored: Sat Jun 15 10:26:13 2013 -0700
Committer: Prasanna Santhanam <ts...@apache.org>
Committed: Mon Jun 17 10:05:02 2013 +0530

----------------------------------------------------------------------
 test/integration/component/test_custom_hostname.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/bf0265d2/test/integration/component/test_custom_hostname.py
----------------------------------------------------------------------
diff --git a/test/integration/component/test_custom_hostname.py b/test/integration/component/test_custom_hostname.py
index c9db215..e569215 100644
--- a/test/integration/component/test_custom_hostname.py
+++ b/test/integration/component/test_custom_hostname.py
@@ -300,7 +300,7 @@ class TestInstanceNameFlagTrue(cloudstackTestCase):
                          "Running",
                          "Vm state should be running after deployment"
                          )
-        self.assertEqual(
+        self.assertNotEqual(
                          vm.displayname,
                          vm.id,
                          "Vm display name should not match the given name"