Skip to content

Commit

Permalink
Fix docstring for pin data rotate test
Browse files Browse the repository at this point in the history
Co-authored-by: John Stilley <[email protected]>
  • Loading branch information
drewj-tp and john-science committed Sep 19, 2024
1 parent af9afb2 commit d7feb0f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions armi/reactor/tests/test_blocks.py
Original file line number Diff line number Diff line change
Expand Up @@ -1837,15 +1837,14 @@ 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
4 5 3 4
- 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
Expand Down

0 comments on commit d7feb0f

Please sign in to comment.