From be152c7d2317e12a265c9b6007e3a0211a817164 Mon Sep 17 00:00:00 2001 From: Aaron Rosen Date: Mon, 6 May 2013 23:17:00 -0700 Subject: [PATCH] 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 --- nova/tests/test_libvirt_vif.py | 1 - nova/tests/test_vmwareapi_vmops.py | 1 - 2 files changed, 2 deletions(-) diff --git a/nova/tests/test_libvirt_vif.py b/nova/tests/test_libvirt_vif.py index 6160105c..0b661d14 100644 --- a/nova/tests/test_libvirt_vif.py +++ b/nova/tests/test_libvirt_vif.py @@ -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] diff --git a/nova/tests/test_vmwareapi_vmops.py b/nova/tests/test_vmwareapi_vmops.py index f1806273..92bca8ae 100644 --- a/nova/tests/test_vmwareapi_vmops.py +++ b/nova/tests/test_vmwareapi_vmops.py @@ -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#')