Skip to content

Commit

Permalink
fix broken unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
albeanth committed Mar 13, 2024
1 parent 09f289e commit 133060b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions armi/physics/neutronics/tests/test_crossSectionManager.py
Expand Up @@ -162,7 +162,7 @@ def test_createRepresentativeBlock(self):
# check that a new block collection of the representative block has right temperatures
# this is required for Doppler coefficient calculations
newBc = AverageBlockCollection(
self.blockList[0].r.blueprints.allNuclidesInProblem
self.blockList[0].core.r.blueprints.allNuclidesInProblem
)
newBc.append(avgB)
newBc.calcAvgNuclideTemperatures()
Expand Down Expand Up @@ -201,7 +201,7 @@ def test_createRepresentativeBlockDissimilar(self):

# U35 has different average temperature because blocks have different U235 content
newBc = AverageBlockCollection(
self.blockList[0].r.blueprints.allNuclidesInProblem
self.blockList[0].core.r.blueprints.allNuclidesInProblem
)
newBc.append(avgB)
newBc.calcAvgNuclideTemperatures()
Expand Down Expand Up @@ -253,7 +253,7 @@ def setUpClass(cls):

def setUp(self):
self.bc = AverageBlockCollection(
self.blockList[0].r.blueprints.allNuclidesInProblem
self.blockList[0].core.r.blueprints.allNuclidesInProblem
)
blockCopies = [copy.deepcopy(b) for b in self.blockList]
self.bc.extend(blockCopies)
Expand Down

0 comments on commit 133060b

Please sign in to comment.