Skip to content

Commit 459b53d

Browse files
authored
🥢 Fix typos in test function names (#1406)
1 parent a240e4b commit 459b53d

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

‎test/LibPRNG.t.sol‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -589,7 +589,7 @@ contract LibPRNGTest is SoladyTest {
589589
this.lazyShufflerNext(_random());
590590
}
591591

592-
function testLazyShufflerRevertsOnFinshedNext(uint256 n) public {
592+
function testLazyShufflerRevertsOnFinishedNext(uint256 n) public {
593593
n = _bound(n, 1, 3);
594594
_lazyShuffler0.initialize(n);
595595
unchecked {

‎test/LibSort.t.sol‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ contract LibSortTest is SoladyTest {
3737
testInsertionSortPsuedorandom(123456789);
3838
}
3939

40-
function testSortChecksumed(uint256) public {
40+
function testSortChecksummed(uint256) public {
4141
unchecked {
4242
uint256 n = _randomArrayLength();
4343
uint256[] memory a = _randomUints(n);

0 commit comments

Comments
 (0)