Skip to content

Commit

Permalink
dumb unit test change to redo jenkins
Browse files Browse the repository at this point in the history
  • Loading branch information
onufer committed Aug 25, 2022
1 parent 648b054 commit 5cca38f
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions armi/reactor/tests/test_components.py
Expand Up @@ -501,6 +501,7 @@ class TestComponentExpansion(unittest.TestCase):
# We need a bigger delta, this will be investigated/fixed in another PR
tWarm = 50
tHot = 500
coldOuterDiameter = 1.0

def test_ExpansionConservationHotHeightDefined(self):
"""
Expand All @@ -512,9 +513,9 @@ def test_ExpansionConservationHotHeightDefined(self):
inputHeightsConsideredHot = True (the default)
"""
hotHeight = 1.0
coldOuterDiameter = 1.0
circle1 = Circle("circle", "HT9", 20, self.tWarm, coldOuterDiameter)
circle2 = Circle("circle", "HT9", 20, self.tHot, coldOuterDiameter)

circle1 = Circle("circle", "HT9", 20, self.tWarm, self.coldOuterDiameter)
circle2 = Circle("circle", "HT9", 20, self.tHot, self.coldOuterDiameter)

# mass density is proportional to Fe number density and derived from
# all the number densities and atomic masses
Expand Down Expand Up @@ -627,8 +628,8 @@ def test_ExpansionConservationColdHeightDefined(self):
inputHeightsConsideredHot = False
"""
coldHeight = 1.0
circle1 = Circle("circle", "HT9", 20, self.tWarm, 1.0)
circle2 = Circle("circle", "HT9", 20, self.tHot, 1.0)
circle1 = Circle("circle", "HT9", 20, self.tWarm, self.coldOuterDiameter)
circle2 = Circle("circle", "HT9", 20, self.tHot, self.coldOuterDiameter)
# same as 1 but we will make like 2
circle1AdjustTo2 = Circle("circle", "HT9", 20, self.tWarm, 1.0)

Expand Down

0 comments on commit 5cca38f

Please sign in to comment.