-
Notifications
You must be signed in to change notification settings - Fork 3.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[smoke-test] Removing clean state dependency of some tests #2143
Conversation
config/global-constants/src/lib.rs
Outdated
@@ -22,5 +22,5 @@ pub const VALIDATOR_NETWORK_KEY: &str = "validator_network"; | |||
pub const SAFETY_DATA: &str = "safety_data"; | |||
pub const WAYPOINT: &str = "waypoint"; | |||
pub const GENESIS_WAYPOINT: &str = "genesis-waypoint"; | |||
pub const MOVE_MODULES: &str = "move_modules"; | |||
pub const MOVE_MODULES: &str = "module_publish_modules"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this an intended change? Seems out of scope of the smoke-test
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh! That was jetbrains refactor renaming...
public fun foo(addr: address): u64 { | ||
coin::balance<AptosCoin>(addr) | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Some linter may complain about the newline.
Refines aptos-labs#2140 to fix flakiness.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
✅ Forge test successForge is land-blocking
|
Description
Refines #2140 to fix flakiness.
Test Plan
Existing tests, less flaky
This change is