Skip to content

Commit 63fa428

Browse files
committed
Removing unused print statements
1 parent ab403b2 commit 63fa428

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

tests/unit_tests/test_cylindrical_mesh.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,6 @@ def test_offset_mesh(model, estimator, origin):
9898
centroids = mesh.centroids
9999
for ijk in mesh.indices:
100100
i, j, k = np.array(ijk) - 1
101-
print(centroids[:, i, j, k])
102101
if model.geometry.find(centroids[:, i, j, k]):
103102
mean[i, j, k] == 0.0
104103
else:
@@ -152,7 +151,6 @@ def _check_void_cylindrical_tally(statepoint_filename):
152151
neutron_flux = flux_tally.get_reshaped_data().squeeze()
153152
# we expect the tally results to be the same as the mesh grid width
154153
# for these cases
155-
print(neutron_flux)
156154
d_r = mesh.r_grid[1] - mesh.r_grid[0]
157155
assert neutron_flux == pytest.approx(d_r)
158156

tests/unit_tests/test_spherical_mesh.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,6 @@ def test_offset_mesh(model, estimator, origin):
102102
centroids = mesh.centroids
103103
for ijk in mesh.indices:
104104
i, j, k = np.array(ijk) - 1
105-
print(centroids[:, i, j, k])
106105
if model.geometry.find(centroids[:, i, j, k]):
107106
mean[i, j, k] == 0.0
108107
else:

0 commit comments

Comments
 (0)