From 63fa42843b04966d75bb4eb0c3a91e12e531d2b9 Mon Sep 17 00:00:00 2001 From: Patrick Shriwise Date: Mon, 27 Mar 2023 16:50:18 -0500 Subject: [PATCH] Removing unused print statements --- tests/unit_tests/test_cylindrical_mesh.py | 2 -- tests/unit_tests/test_spherical_mesh.py | 1 - 2 files changed, 3 deletions(-) diff --git a/tests/unit_tests/test_cylindrical_mesh.py b/tests/unit_tests/test_cylindrical_mesh.py index 27c4d5a1f..cbdb1d315 100644 --- a/tests/unit_tests/test_cylindrical_mesh.py +++ b/tests/unit_tests/test_cylindrical_mesh.py @@ -98,7 +98,6 @@ def test_offset_mesh(model, estimator, origin): centroids = mesh.centroids for ijk in mesh.indices: i, j, k = np.array(ijk) - 1 - print(centroids[:, i, j, k]) if model.geometry.find(centroids[:, i, j, k]): mean[i, j, k] == 0.0 else: @@ -152,7 +151,6 @@ def _check_void_cylindrical_tally(statepoint_filename): neutron_flux = flux_tally.get_reshaped_data().squeeze() # we expect the tally results to be the same as the mesh grid width # for these cases - print(neutron_flux) d_r = mesh.r_grid[1] - mesh.r_grid[0] assert neutron_flux == pytest.approx(d_r) diff --git a/tests/unit_tests/test_spherical_mesh.py b/tests/unit_tests/test_spherical_mesh.py index 0f02e9699..ba3167d6f 100644 --- a/tests/unit_tests/test_spherical_mesh.py +++ b/tests/unit_tests/test_spherical_mesh.py @@ -102,7 +102,6 @@ def test_offset_mesh(model, estimator, origin): centroids = mesh.centroids for ijk in mesh.indices: i, j, k = np.array(ijk) - 1 - print(centroids[:, i, j, k]) if model.geometry.find(centroids[:, i, j, k]): mean[i, j, k] == 0.0 else: