Skip to content
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

fix(iota-benchmark/tests): fix test_simulated_load_reconfig_restarts #3853

Merged
2 changes: 1 addition & 1 deletion crates/iota-benchmark/tests/simtest.rs
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ mod test {
test_cluster.wait_for_epoch_all_nodes(1).await;
}

#[ignore("Disabled due to flakiness - re-enable when failure is fixed")]
//#[ignore("Disabled due to flakiness - re-enable when failure is fixed")]
miker83z marked this conversation as resolved.
Show resolved Hide resolved
#[sim_test(config = "test_config()")]
async fn test_simulated_load_reconfig_restarts() {
// TODO added to invalidate a failing test seed in CI. Remove me
miker83z marked this conversation as resolved.
Show resolved Hide resolved
Expand Down
3 changes: 1 addition & 2 deletions crates/iota-e2e-tests/tests/shared_objects_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -468,7 +468,6 @@ async fn call_shared_object_contract() {
);
}

#[ignore("Disabled due to flakiness - re-enable when failure is fixed")]
#[sim_test]
async fn access_clock_object_test() {
miker83z marked this conversation as resolved.
Show resolved Hide resolved
let test_cluster = TestClusterBuilder::new().build().await;
Expand All @@ -478,7 +477,7 @@ async fn access_clock_object_test() {
&test_cluster
.test_transaction_builder()
.await
.move_call(package_id, "clock", "get_time", vec![CallArg::CLOCK_IMM])
.move_call(package_id, "clock", "access", vec![CallArg::CLOCK_IMM])
.build(),
);
let digest = *transaction.digest();
Expand Down
Loading