Removing print statement.

This commit is contained in:
Patrick Shriwise 2019-07-24 12:49:02 -05:00
parent 3439797e32
commit 3be6520671

View file

@ -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]