Skip to content

Commit

Permalink
Fixing import loop (#1495)
Browse files Browse the repository at this point in the history
  • Loading branch information
john-science committed Nov 27, 2023
1 parent 2571216 commit 550c47f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion armi/reactor/blueprints/tests/test_gridBlueprints.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
from armi.reactor import systemLayoutInput
from armi.reactor.blueprints import Blueprints
from armi.reactor.blueprints.gridBlueprint import Grids, saveToStream
from armi.reactor.blueprints.tests.test_blockBlueprints import FULL_BP, FULL_BP_GRID
from armi.utils.directoryChangers import TemporaryDirectoryChanger


Expand Down Expand Up @@ -401,6 +400,8 @@ def test_simpleReadLatticeMap(self):
:id: T_ARMI_BP_GRID0
:tests: R_ARMI_BP_GRID
"""
from armi.reactor.blueprints.tests.test_blockBlueprints import FULL_BP

# Cartesian full, even/odd hybrid
gridDesign4 = self.grids["sfp even"]
_grid = gridDesign4.construct()
Expand Down Expand Up @@ -432,6 +433,8 @@ def test_simpleReadLatticeMap(self):
self.assertTrue(os.path.exists(filePath))

def test_simpleReadNoLatticeMap(self):
from armi.reactor.blueprints.tests.test_blockBlueprints import FULL_BP_GRID

# Cartesian full, even/odd hybrid
gridDesign4 = self.grids["sfp even"]
_grid = gridDesign4.construct()
Expand Down

0 comments on commit 550c47f

Please sign in to comment.