From 3be6520671b7fc2fda51446edeffd5aca0f13225 Mon Sep 17 00:00:00 2001 From: Patrick Shriwise Date: Wed, 24 Jul 2019 12:49:02 -0500 Subject: [PATCH] Removing print statement. --- tests/unit_tests/test_complex_cell_capi.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/unit_tests/test_complex_cell_capi.py b/tests/unit_tests/test_complex_cell_capi.py index 451233d642..e5983d2d5e 100644 --- a/tests/unit_tests/test_complex_cell_capi.py +++ b/tests/unit_tests/test_complex_cell_capi.py @@ -91,7 +91,6 @@ expected_results = ( (1, (( -4., -4., -inf), ( 4., 4., inf))), (5, ((-inf, -inf, -inf), (inf, inf, inf))) ) @pytest.mark.parametrize("cell_id,expected_box", expected_results) def test_cell_box(cell_id, expected_box): - print("Cell {}".format(cell_id)) cell_box = openmc.capi.cells[cell_id].bounding_box assert tuple(cell_box[0]) == expected_box[0] assert tuple(cell_box[1]) == expected_box[1]