From d7feb0fcf4d08f4dd3b9bced493d439af3d0e701 Mon Sep 17 00:00:00 2001 From: Drew Johnson Date: Thu, 19 Sep 2024 14:15:13 -0700 Subject: [PATCH] Fix docstring for pin data rotate test Co-authored-by: John Stilley <1831479+john-science@users.noreply.github.com> --- armi/reactor/tests/test_blocks.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/armi/reactor/tests/test_blocks.py b/armi/reactor/tests/test_blocks.py index df6f97442..642d0848b 100644 --- a/armi/reactor/tests/test_blocks.py +++ b/armi/reactor/tests/test_blocks.py @@ -1837,7 +1837,7 @@ def _rotateAndCompareBoundaryParams(self, rotNum: int, expected: np.ndarray): def test_rotatedPinParameters(self): """Test that block parameters that reflect pin data are rotated. - Pre-rotate pin layout -> Post-rotate layout + Pre-rotate pin layout -> Post-rotate layout:: 2 1 1 6 3 0 6 -> 2 0 5 @@ -1845,7 +1845,6 @@ def test_rotatedPinParameters(self): - Pre-rotate data: ``[0, 1, 2, 3, 4, 5, 6, ...]`` - Post-rotate data: ``[0, 6, 1, 2, 3, 4, 5, ...]`` - """ self.block.rotate(math.radians(60)) preRotate = self.PIN_DATA