Commit b261ad0f authored by Mark Tyneway's avatar Mark Tyneway

contracts-bedrock: fix function name

parent 49c1d3fc
...@@ -219,7 +219,7 @@ contract Bytes_toNibbles_Test is Test { ...@@ -219,7 +219,7 @@ contract Bytes_toNibbles_Test is Test {
* implementation. * implementation.
*/ */
function testDiff_toNibbles_succeeds(bytes memory _input) public { function testDiff_toNibbles_succeeds(bytes memory _input) public {
assertEq(Bytes.toNibbles(_input), toNibblesYul(_input)); assertEq(Bytes.toNibbles(_input), _toNibblesYul(_input));
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment