Repository: cloudstack Updated Branches: refs/heads/master 008911d4b -> f2ea61723
Correcting a minor typo in test_deploy_vgpu_vm.py script Signed-off-by: SrikanteswaraRao Talluri <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/f2ea6172 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/f2ea6172 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/f2ea6172 Branch: refs/heads/master Commit: f2ea6172386277f644fd4f20bb7f8fb065c30684 Parents: 008911d Author: Abhinav Roy <[email protected]> Authored: Tue Feb 3 15:27:17 2015 +0530 Committer: SrikanteswaraRao Talluri <[email protected]> Committed: Tue Feb 3 17:57:33 2015 +0530 ---------------------------------------------------------------------- .../component/test_deploy_vgpu_vm.py | 32 ++++++++++---------- 1 file changed, 16 insertions(+), 16 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/f2ea6172/test/integration/component/test_deploy_vgpu_vm.py ---------------------------------------------------------------------- diff --git a/test/integration/component/test_deploy_vgpu_vm.py b/test/integration/component/test_deploy_vgpu_vm.py index 15ad2d9..de47c42 100644 --- a/test/integration/component/test_deploy_vgpu_vm.py +++ b/test/integration/component/test_deploy_vgpu_vm.py @@ -92,7 +92,7 @@ class TestvGPUWindowsVm(cloudstackTestCase): host=ghost.ipaddress, port=cls.testdata['configurableData']['host']["publicport"], user=cls.testdata['configurableData']['host']["username"], - passwd=cls.testdata['configurabledata']['host']["password"]) + passwd=cls.testdata['configurableData']['host']["password"]) if ghost.hypervisorversion == "6.2.0": res = len( @@ -326,9 +326,9 @@ class TestvGPUWindowsVm(cloudstackTestCase): ) ssh_client = SshClient( host=vgpu_host[0].ipaddress, - port=self.testdata['configurabledata']['host']["publicport"], - user=self.testdata['configurabledata']['host']["username"], - passwd=self.testdata['configurabledata']['host']["password"]) + port=self.testdata['configurableData']['host']["publicport"], + user=self.testdata['configurableData']['host']["username"], + passwd=self.testdata['configurableData']['host']["password"]) """ Get vGPU type model """ @@ -1051,9 +1051,9 @@ class TestvGPUWindowsVm(cloudstackTestCase): ) ssh_client = SshClient( host=vgpu_host[0].ipaddress, - port=self.testdata['configurabledata']['host']["publicport"], - user=self.testdata['configurabledata']['host']["username"], - passwd=self.testdata['configurabledata']['host']["password"]) + port=self.testdata['configurableData']['host']["publicport"], + user=self.testdata['configurableData']['host']["username"], + passwd=self.testdata['configurableData']['host']["password"]) """ Get vGPU type model """ @@ -1192,9 +1192,9 @@ class TestvGPUWindowsVm(cloudstackTestCase): ) ssh_client = SshClient( host=vgpu_host[0].ipaddress, - port=self.testdata['configurabledata']['host']["publicport"], - user=self.testdata['configurabledata']['host']["username"], - passwd=self.testdata['configurabledata']['host']["password"]) + port=self.testdata['configurableData']['host']["publicport"], + user=self.testdata['configurableData']['host']["username"], + passwd=self.testdata['configurableData']['host']["password"]) vgpu_snapshot = ssh_client.execute( "xe snapshot-list name-label=" + @@ -1265,9 +1265,9 @@ class TestvGPUWindowsVm(cloudstackTestCase): ) ssh_client = SshClient( host=vgpu_host[0].ipaddress, - port=self.testdata['configurabledata']['host']["publicport"], - user=self.testdata['configurabledata']['host']["username"], - passwd=self.testdata['configurabledata']['host']["password"]) + port=self.testdata['configurableData']['host']["publicport"], + user=self.testdata['configurableData']['host']["username"], + passwd=self.testdata['configurableData']['host']["password"]) vgpu_snapshot = ssh_client.execute( "xe snapshot-list name-label=" + @@ -1636,9 +1636,9 @@ class TestvGPUWindowsVm(cloudstackTestCase): sshClient1 = SshClient( host=lhosts[0].ipaddress, - port=self.testdata['configurabledata']['host']["publicport"], - user=self.testdata['configurabledata']['host']["username"], - passwd=self.testdata['configurabledata']['host']["password"]) + port=self.testdata['configurableData']['host']["publicport"], + user=self.testdata['configurableData']['host']["username"], + passwd=self.testdata['configurableData']['host']["password"]) totalxenhosts = len(sshClient1.execute("xe host-list | grep uuid")) for hostlist in lhosts:
