From d0e63ed69a5d9bfcd10b8edfe8b87cba7592c63c Mon Sep 17 00:00:00 2001 From: John Griffith Date: Sat, 24 Aug 2013 09:57:40 -0600 Subject: [PATCH] Remove print statement in db api test Remove the encryption related print statements in test_dp_api, this should bring us up to speed now for updated requirements and take care of the py3.3 incompat print issues. Change-Id: If7475cc43d3c0b443908f846d76071913536fdf4 --- cinder/tests/test_db_api.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/cinder/tests/test_db_api.py b/cinder/tests/test_db_api.py index 83805e457..283029d91 100644 --- a/cinder/tests/test_db_api.py +++ b/cinder/tests/test_db_api.py @@ -534,18 +534,14 @@ class DBAPIEncryptionTestCase(BaseTest): def test_volume_type_encryption_update_or_create(self): values = self._get_values() for i, encryption in enumerate(self.created): - print "values[%s] = %s" % (i, values[i]) - print "encryption = %s" % encryption.__dict__ self._assertEqualObjects(values[i], encryption, self._ignored_keys) def test_volume_type_encryption_get(self): for encryption in self.created: - print "encryption = %s" % encryption.__dict__ encryption_get = \ db.volume_type_encryption_get(self.ctxt, encryption['volume_type_id']) - print "encryption_get = %s" % encryption_get.__dict__ self._assertEqualObjects(encryption, encryption_get, self._ignored_keys) -- 2.45.2