Remove random print statements

Noticed a random print statement in the code and then grep around for the rest.
Might as well remove these.

Change-Id: Ieb2d72cf55cbf077c2e824d430707211d1f87b8e
This commit is contained in:
Aaron Rosen
2013-05-06 23:17:00 -07:00
parent 84f85374c6
commit be152c7d23
2 changed files with 0 additions and 2 deletions

View File

@@ -584,7 +584,6 @@ class LibvirtVifTestCase(test.TestCase):
self.mapping_8021qbg)
doc = etree.fromstring(xml)
print xml
ret = doc.findall('./devices/interface')
self.assertEqual(len(ret), 1)
node = ret[0]

View File

@@ -56,7 +56,6 @@ class VMwareVMOpsTestCase(test.TestCase):
def test_get_machine_id_str(self):
result = vmops.VMwareVMOps._get_machine_id_str(self.network_info)
print result
self.assertEqual(result,
'DE:AD:BE:EF:00:00;192.168.0.100;255.255.255.0;'
'192.168.0.1;192.168.0.255;192.168.0.1#')