Skip to content

Commit

Permalink
remove prints
Browse files Browse the repository at this point in the history
  • Loading branch information
onufer committed Nov 6, 2024
1 parent eff1d77 commit 481a853
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions armi/physics/neutronics/tests/test_crossSectionManager.py
Original file line number Diff line number Diff line change
Expand Up @@ -1137,9 +1137,9 @@ def setUp(self):
def getBlocks(includeAll=True):
return self.blockList

# this sets XSGM to only analyze the blocks in the block list.
core.getBlocks = getBlocks
for b in core.getBlocks():
print(b)

self.csm = CrossSectionGroupManager(self.blockList[0].core.r, cs)
self.csm._setBuGroupBounds([3, 10, 30, 100])
self.csm.interactBOL()
Expand All @@ -1148,8 +1148,7 @@ def test_updateEnvironmentGroups(self):
self.csm.createRepresentativeBlocks()
BL = self.blockList
loners = [BL[1], BL[3]]
for b in BL:
print(b.getMicroSuffix())

self.assertNotEqual(loners[0].getMicroSuffix(), loners[1].getMicroSuffix())
sameGroups = [(BL[0], BL[4]), (BL[2], BL[5]), (BL[6], BL[7]), (BL[8], BL[9])]

Expand Down

0 comments on commit 481a853

Please sign in to comment.