summaryrefslogtreecommitdiffstats
path: root/nova/tests
diff options
context:
space:
mode:
authorWilliam Wolf <throughnothing@gmail.com>2011-06-01 23:11:50 -0400
committerWilliam Wolf <throughnothing@gmail.com>2011-06-01 23:11:50 -0400
commit5ded1f2c1d0d14b3c04df137f7cc6a0b65e53fda (patch)
tree3893e6f717c5c64755f00e80f2c2c6a0b1710b34 /nova/tests
parent4fb46873ef4332c6570d3ac5559557745056dee6 (diff)
got rid of print debugs
Diffstat (limited to 'nova/tests')
-rw-r--r--nova/tests/api/openstack/test_images.py2
-rw-r--r--nova/tests/api/openstack/test_servers.py1
2 files changed, 1 insertions, 2 deletions
diff --git a/nova/tests/api/openstack/test_images.py b/nova/tests/api/openstack/test_images.py
index 38823c377..c2b03c281 100644
--- a/nova/tests/api/openstack/test_images.py
+++ b/nova/tests/api/openstack/test_images.py
@@ -306,7 +306,7 @@ class GlanceImageServiceTest(_BaseImageServiceTests):
'is_public': True,
'name': 'TestImage %d' % (i),
'properties': {
- 'updated': None,
+ 'updated': None,
'created': None,
},
}
diff --git a/nova/tests/api/openstack/test_servers.py b/nova/tests/api/openstack/test_servers.py
index 3de7865cd..51def1980 100644
--- a/nova/tests/api/openstack/test_servers.py
+++ b/nova/tests/api/openstack/test_servers.py
@@ -448,7 +448,6 @@ class ServersTest(test.TestCase):
req = webob.Request.blank('/v1.1/servers?limit=2&marker=asdf')
res = req.get_response(fakes.wsgi_app())
self.assertEqual(res.status_int, 400)
- print "BODY",res.body
self.assertTrue(res.body.find('marker param') > -1)
def _setup_for_create_instance(self):