From 272a8e36925c9f2af199d9d74a6d7be22b4ee124 Mon Sep 17 00:00:00 2001 From: Will Boyd Date: Thu, 30 Apr 2015 00:14:11 -0400 Subject: [PATCH] Removed unnecessary print statements from distribcell test --- tests/test_filter_distribcell/test_filter_distribcell.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/tests/test_filter_distribcell/test_filter_distribcell.py b/tests/test_filter_distribcell/test_filter_distribcell.py index fa3d4ea4b1..b09f2d9f49 100644 --- a/tests/test_filter_distribcell/test_filter_distribcell.py +++ b/tests/test_filter_distribcell/test_filter_distribcell.py @@ -27,7 +27,6 @@ def test_run(): proc = Popen([opts.mpi_exec, '-np', opts.mpi_np, opts.exe, cwd], stderr=STDOUT, stdout=PIPE) else: - print opts.exe, cwd proc = Popen([opts.exe, cwd], stderr=STDOUT, stdout=PIPE) print(proc.communicate()[0]) returncode = proc.returncode @@ -94,9 +93,7 @@ def teardown(): output.append(cwd + '/settings.xml') output.append(cwd + '/tallies.xml') output.append(cwd + '/results_test.dat') - print output for f in output: - print f if os.path.exists(str(f)): os.remove(str(f))