Skip to content

Commit 9ca4ecd

Browse files
authored
Small typo fix that could otherwise cause confusion
1 parent 24c2259 commit 9ca4ecd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -393,8 +393,8 @@ contract DSTest {
393393
function assertEq(string memory a, string memory b) internal {
394394
if (keccak256(abi.encodePacked(a)) != keccak256(abi.encodePacked(b))) {
395395
emit log("Error: a == b not satisfied [string]");
396-
emit log_named_string(" Value a", b);
397-
emit log_named_string(" Value b", a);
396+
emit log_named_string(" Value a", a);
397+
emit log_named_string(" Value b", b);
398398
fail();
399399
}
400400
}

0 commit comments

Comments
 (0)