You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@libcloud.apache.org by an...@apache.org on 2016/03/07 10:47:00 UTC

[9/9] libcloud git commit: Fixing up test argument Closes #720

Fixing up test argument
Closes #720


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

Branch: refs/heads/trunk
Commit: 3aebd5b8b96162b1db7626758f74ceeb8767917b
Parents: 44b640a
Author: Jeffrey Dunham <je...@gmail.com>
Authored: Tue Feb 2 21:07:07 2016 -0500
Committer: anthony-shaw <an...@gmail.com>
Committed: Mon Mar 7 20:46:25 2016 +1100

----------------------------------------------------------------------
 libcloud/test/compute/test_dimensiondata.py | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/libcloud/blob/3aebd5b8/libcloud/test/compute/test_dimensiondata.py
----------------------------------------------------------------------
diff --git a/libcloud/test/compute/test_dimensiondata.py b/libcloud/test/compute/test_dimensiondata.py
index 50bbe20..24d9378 100644
--- a/libcloud/test/compute/test_dimensiondata.py
+++ b/libcloud/test/compute/test_dimensiondata.py
@@ -236,7 +236,7 @@ class DimensionDataTests(unittest.TestCase, TestCaseMixin):
                                     auth=rootPw,
                                     ex_description='test2 node',
                                     ex_network=None,
-                                    ex_isStarted=False)
+                                    ex_is_started=False)
 
     def test_create_node_mcp1_ipv4(self):
         rootPw = NodeAuthPassword('pass123')
@@ -246,7 +246,7 @@ class DimensionDataTests(unittest.TestCase, TestCaseMixin):
                                        auth=rootPw,
                                        ex_description='test2 node',
                                        ex_primary_ipv4='10.0.0.1',
-                                       ex_isStarted=False)
+                                       ex_is_started=False)
         self.assertEqual(node.id, 'e75ead52-692f-4314-8725-c8a4f4d13a87')
         self.assertEqual(node.extra['status'].action, 'DEPLOY_SERVER')
 
@@ -258,7 +258,7 @@ class DimensionDataTests(unittest.TestCase, TestCaseMixin):
                                        auth=rootPw,
                                        ex_description='test2 node',
                                        ex_network='fakenetwork',
-                                       ex_isStarted=False)
+                                       ex_is_started=False)
         self.assertEqual(node.id, 'e75ead52-692f-4314-8725-c8a4f4d13a87')
         self.assertEqual(node.extra['status'].action, 'DEPLOY_SERVER')
 
@@ -271,7 +271,7 @@ class DimensionDataTests(unittest.TestCase, TestCaseMixin):
                                        ex_description='test2 node',
                                        ex_network_domain='fakenetworkdomain',
                                        ex_vlan='fakevlan',
-                                       ex_isStarted=False)
+                                       ex_is_started=False)
         self.assertEqual(node.id, 'e75ead52-692f-4314-8725-c8a4f4d13a87')
         self.assertEqual(node.extra['status'].action, 'DEPLOY_SERVER')
 
@@ -284,7 +284,7 @@ class DimensionDataTests(unittest.TestCase, TestCaseMixin):
                                        ex_description='test2 node',
                                        ex_network_domain='fakenetworkdomain',
                                        ex_primary_ipv4='10.0.0.1',
-                                       ex_isStarted=False)
+                                       ex_is_started=False)
         self.assertEqual(node.id, 'e75ead52-692f-4314-8725-c8a4f4d13a87')
         self.assertEqual(node.extra['status'].action, 'DEPLOY_SERVER')
 
@@ -297,7 +297,7 @@ class DimensionDataTests(unittest.TestCase, TestCaseMixin):
                                     auth=rootPw,
                                     ex_description='test2 node',
                                     ex_network_domain='fake_network_domain',
-                                    ex_isStarted=False)
+                                    ex_is_started=False)
 
     def test_create_node_mcp2_additional_nics(self):
         rootPw = NodeAuthPassword('pass123')
@@ -312,7 +312,7 @@ class DimensionDataTests(unittest.TestCase, TestCaseMixin):
                                        ex_primary_ipv4='10.0.0.1',
                                        ex_additional_nics_vlan=additional_vlans,
                                        ex_additional_nics_ipv4=additional_ipv4,
-                                       ex_isStarted=False)
+                                       ex_is_started=False)
         self.assertEqual(node.id, 'e75ead52-692f-4314-8725-c8a4f4d13a87')
         self.assertEqual(node.extra['status'].action, 'DEPLOY_SERVER')
 
@@ -327,7 +327,7 @@ class DimensionDataTests(unittest.TestCase, TestCaseMixin):
                                     ex_network_domain='fake_network_domain',
                                     ex_vlan='fake_vlan',
                                     ex_additional_nics_ipv4='badstring',
-                                    ex_isStarted=False)
+                                    ex_is_started=False)
 
     def test_create_node_bad_additional_nics_vlan(self):
         rootPw = NodeAuthPassword('pass123')
@@ -340,7 +340,7 @@ class DimensionDataTests(unittest.TestCase, TestCaseMixin):
                                     ex_network_domain='fake_network_domain',
                                     ex_vlan='fake_vlan',
                                     ex_additional_nics_vlan='badstring',
-                                    ex_isStarted=False)
+                                    ex_is_started=False)
 
     def test_ex_shutdown_graceful(self):
         node = Node(id='11', name=None, state=None,