Fix a typo in the test and make sure the tests actually run.

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

Branch: refs/heads/trunk
Commit: adba6dee07066cb9ad745af37d98c7a564aba23c
Parents: 4df8dd2
Author: Tomaz Muraus <[email protected]>
Authored: Sun Dec 22 02:28:24 2013 +0100
Committer: Tomaz Muraus <[email protected]>
Committed: Sun Dec 22 02:28:24 2013 +0100

----------------------------------------------------------------------
 libcloud/test/compute/test_ec2.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/libcloud/blob/adba6dee/libcloud/test/compute/test_ec2.py
----------------------------------------------------------------------
diff --git a/libcloud/test/compute/test_ec2.py 
b/libcloud/test/compute/test_ec2.py
index 70ec986..bdd7a61 100644
--- a/libcloud/test/compute/test_ec2.py
+++ b/libcloud/test/compute/test_ec2.py
@@ -220,12 +220,12 @@ class EC2Tests(LibcloudTestCase, TestCaseMixin):
         retValue = self.driver.ex_delete_security_group_by_id(group_id)
         self.assertTrue(retValue)
 
-    def text_ex_delete_security_group_by_name(self):
+    def test_delete_security_group_by_name(self):
         group_name = 'WebServers'
         retValue = self.driver.ex_delete_security_group_by_name(group_name)
         self.assertTrue(retValue)
 
-    def text_ex_delete_security_group(self):
+    def test_ex_delete_security_group(self):
         name = 'WebServers'
         retValue = self.driver.ex_delete_security_group(name)
         self.assertTrue(retValue)

Reply via email to