You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by gi...@apache.org on 2013/11/15 12:43:23 UTC

git commit: updated refs/heads/master to 0b8cc97

Updated Branches:
  refs/heads/master 09c0370d7 -> 0b8cc9705


Fix marvin to refer to correct random_gen() function


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

Branch: refs/heads/master
Commit: 0b8cc9705f2a5d91e3bde503e89465d513b70f9f
Parents: 09c0370
Author: Girish Shilamkar <gi...@clogeny.com>
Authored: Fri Nov 15 17:10:40 2013 +0530
Committer: Girish Shilamkar <gi...@clogeny.com>
Committed: Fri Nov 15 17:13:12 2013 +0530

----------------------------------------------------------------------
 tools/marvin/marvin/cloudstackTestClient.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/0b8cc970/tools/marvin/marvin/cloudstackTestClient.py
----------------------------------------------------------------------
diff --git a/tools/marvin/marvin/cloudstackTestClient.py b/tools/marvin/marvin/cloudstackTestClient.py
index 0f96a2c..8a41fad 100644
--- a/tools/marvin/marvin/cloudstackTestClient.py
+++ b/tools/marvin/marvin/cloudstackTestClient.py
@@ -23,6 +23,7 @@ import random
 import string
 import hashlib
 from configGenerator import ConfigManager
+from marvin.integration.lib.utils import random_gen
 
 '''
 @Desc  : CloudStackTestClient is encapsulated class for getting various \
@@ -125,7 +126,7 @@ class cloudstackTestClient(object):
             createAcctCmd = createAccount.createAccountCmd()
             createAcctCmd.accounttype = acctType
             createAcctCmd.domainid = domId
-            createAcctCmd.email = "test-" + self.random_gen()\
+            createAcctCmd.email = "test-" + random_gen()\
                 + "@cloudstack.org"
             createAcctCmd.firstname = UserName
             createAcctCmd.lastname = UserName