Skip to content

Commit

Permalink
chore: update console.sol in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
DaniPopes committed Oct 7, 2024
1 parent 579e7d9 commit 13b5605
Show file tree
Hide file tree
Showing 2 changed files with 408 additions and 387 deletions.
10 changes: 5 additions & 5 deletions testdata/default/logs/HardhatLogs.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ contract HardhatLogsTest {
}

function testInts() public view {
console.log(0);
console.log(1);
console.log(2);
console.log(3);
console.log(uint(0));
console.log(uint(1));
console.log(uint(2));
console.log(uint(3));
}

function testStrings() public view {
Expand All @@ -37,7 +37,7 @@ contract HardhatLogsTest {

function testMisc() public view {
console.log("testMisc", address(1));
console.log("testMisc", 42);
console.log("testMisc", uint(42));
}

function testConsoleLog() public view {
Expand Down
Loading

0 comments on commit 13b5605

Please sign in to comment.