Skip to content

Commit

Permalink
fix: test_core
Browse files Browse the repository at this point in the history
  • Loading branch information
yash-atreya committed Jan 9, 2025
1 parent 097decd commit 1eda9a5
Showing 1 changed file with 1 addition and 35 deletions.
36 changes: 1 addition & 35 deletions crates/forge/tests/it/core.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,29 +18,9 @@ async fn test_core() {
assert_multiple(
&results,
BTreeMap::from([
(
"default/core/FailingSetup.t.sol:FailingSetupTest",
vec![(
"setUp()",
false,
Some("revert: setup failed predictably".to_string()),
None,
None,
)],
),
(
"default/core/MultipleSetup.t.sol:MultipleSetup",
vec![(
"setUp()",
false,
Some("multiple setUp functions".to_string()),
None,
Some(1),
)],
),
(
"default/core/Reverting.t.sol:RevertingTest",
vec![("testFailRevert()", true, None, None, None)],
vec![("testRevert()", true, None, None, None)],
),
(
"default/core/SetupConsistency.t.sol:SetupConsistencyCheck",
Expand All @@ -49,10 +29,6 @@ async fn test_core() {
("testMultiply()", true, None, None, None),
],
),
(
"default/core/DSStyle.t.sol:DSStyleTest",
vec![("testFailingAssertions()", true, None, None, None)],
),
(
"default/core/ContractEnvironment.t.sol:ContractEnvironmentTest",
vec![
Expand All @@ -72,16 +48,6 @@ async fn test_core() {
"default/core/FailingTestAfterFailedSetup.t.sol:FailingTestAfterFailedSetupTest",
vec![("setUp()", false, Some("execution error".to_string()), None, None)],
),
(
"default/core/MultipleAfterInvariant.t.sol:MultipleAfterInvariant",
vec![(
"afterInvariant()",
false,
Some("multiple afterInvariant functions".to_string()),
None,
None,
)],
),
(
"default/core/BadSigAfterInvariant.t.sol:BadSigAfterInvariant",
vec![("testShouldPassWithWarning()", true, None, None, None)],
Expand Down

0 comments on commit 1eda9a5

Please sign in to comment.