Skip to content

Commit

Permalink
🐛 Fix sonarcloud quality bug (#3450)
Browse files Browse the repository at this point in the history
  • Loading branch information
je-cook authored Jul 15, 2024
1 parent 2842527 commit 06ccfa3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/radiation_transport/test_radiation_profile.py
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ def test_make_wall_detectors(self):
self.fw_shape.x, self.fw_shape.z, max_wall_len, X_WIDTH
)
assert all(detector[2] <= max_wall_len for detector in wall_detectors)
assert all(detector[1] == X_WIDTH for detector in wall_detectors)
assert all(np.isclose(detector[1], X_WIDTH) for detector in wall_detectors)
assert len(wall_detectors) == 532

def test_FirstWallRadiationSolver(self):
Expand Down

0 comments on commit 06ccfa3

Please sign in to comment.