Skip to content

Commit

Permalink
Remove print statement from test_quotas that fails H233 check
Browse files Browse the repository at this point in the history
The nova.tests.objects.test_quotas module had a print statement which is
causing a hacking H233 check failure. It was probably just left there
from debugging the code while it was under development, so this patch
simply removes it.

Closes-Bug: #1227655

Change-Id: I25296d7f4a9d2242bfe3ed2e00df6d840a7b19cd
  • Loading branch information
Matt Riedemann committed Sep 19, 2013
1 parent 50482be commit de648bb
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion nova/tests/objects/test_quotas.py
Expand Up @@ -46,7 +46,6 @@ def test_ids_from_instance_admin(self):
class _TestQuotasObject(object):
def setUp(self):
super(_TestQuotasObject, self).setUp()
print 'got here'
self.context = context.RequestContext('fake_user1', 'fake_proj1')
self.instance = fake_instance.fake_db_instance(
project_id='fake_proj2', user_id='fake_user2')
Expand Down

0 comments on commit de648bb

Please sign in to comment.