]> review.fuel-infra Code Review - openstack-build/neutron-build.git/commitdiff
Removing some legacy code from the unit tests
authorTyler Smith <tylesmit@cisco.com>
Thu, 28 Jul 2011 17:49:18 +0000 (10:49 -0700)
committerTyler Smith <tylesmit@cisco.com>
Thu, 28 Jul 2011 17:49:18 +0000 (10:49 -0700)
tests/unit/api.py

index 13962322c13735312af935477077ed8464993307..663870bfa775505af2af377fdf90ba4be9321e22 100644 (file)
@@ -90,9 +90,9 @@ class APITest(unittest.TestCase):
         """ Setups a test environment for the API client """
         HOST = '127.0.0.1'
         PORT = 9696
-        USE_SSL = True
+        USE_SSL = False
 
-        self.client = Client(HOST,PORT,USE_SSL,TENANT_1,'json',ServerStub, key_file="/ssl.cert", cert_file="/ssl.cert")
+        self.client = Client(HOST,PORT,USE_SSL,TENANT_1,'json',ServerStub)
 
     def _assert_sanity(self, call, status, method, path, data=[], params={}):
         """ Perform common assertions to test the sanity of client requests """
@@ -103,7 +103,7 @@ class APITest(unittest.TestCase):
             self.assertRaises(Exception, call, *data, **params)
             return
 
-        # Make the call, then get the data from the root node and strip its data
+        # Make the call, then get the data from the root node and assert it
         data = call(*data, **params)['data']
 
         self.assertEqual(data['method'], method)