diff --git a/armi/reactor/tests/test_blocks.py b/armi/reactor/tests/test_blocks.py index f13791428..856659c89 100644 --- a/armi/reactor/tests/test_blocks.py +++ b/armi/reactor/tests/test_blocks.py @@ -1739,13 +1739,13 @@ class BlockRotateTests(unittest.TestCase): """Tests for the ability for a block to be rotated.""" BOUNDARY_PARAMS = [ - "pointsCornerDpa", "cornerFastFlux", - "pointsCornerFastFluxFr", + "pointsCornerDpa", "pointsCornerDpaRate", - "pointsEdgeFastFluxFr", + "pointsCornerFastFluxFr", "pointsEdgeDpa", "pointsEdgeDpaRate", + "pointsEdgeFastFluxFr", ] BOUNDARY_DATA = np.arange(6, dtype=float) * 10 diff --git a/doc/release/0.4.rst b/doc/release/0.4.rst index 41f4fb4a7..d57c51825 100644 --- a/doc/release/0.4.rst +++ b/doc/release/0.4.rst @@ -11,9 +11,7 @@ New Features #. ARMI now supports Python 3.12. (`PR#1813 `_) #. Removing the ``tabulate`` dependency by ingesting it to ``armi.utils.tabulate``. (`PR#1811 `_) #. Adding ``--skip-inspection`` flag to ``CompareCases`` CLI. (`PR#1842 `_) -#. Provide utilities for determining location of a rotated object in a hexagonal lattice: - :func:`armi.utils.hexagon.getIndexOfRotatedCell` - (`PR#1846 `_) #. ``HexBlock.rotate`` will rotate additionally rotate ``HexBlock`` parameters with ``ParamLocation.CHILDREN``. (`PR#1877 `_)