You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In StdCheats.t.sol there is a test case named tes_tDealToken which does not run as part of the test suite.
Here's a patch that fixes it:
diff --git a/test/StdCheats.t.sol b/test/StdCheats.t.sol
index d7b3517..e94923c 100644
--- a/test/StdCheats.t.sol+++ b/test/StdCheats.t.sol@@ -102,7 +102,7 @@ contract StdCheatsTest is Test {
assertEq(address(this).balance, 1 ether);
}
- function tes_tDealToken() public {+ function test_DealToken() public {
Bar barToken = new Bar();
address bar = address(barToken);
deal(bar, address(this), 10000e18);
The text was updated successfully, but these errors were encountered:
totomanov
changed the title
StdCheats.t.sol contains a mistyped test case that does not runStdCheats.t.sol contains a mistyped test function which does not run as part of the test suite
Oct 25, 2023
totomanov
changed the title
StdCheats.t.sol contains a mistyped test function which does not run as part of the test suiteStdCheats.t.sol contains a mistyped test function
Oct 25, 2023
In
StdCheats.t.sol
there is a test case namedtes_tDealToken
which does not run as part of the test suite.Here's a patch that fixes it:
The text was updated successfully, but these errors were encountered: