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

use flat vm fee #4607

Merged
merged 20 commits into from
Oct 12, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix tests using sim test
  • Loading branch information
oxade committed Oct 4, 2022
commit 7cb8e111a2c60f00ac82fa13f288ddc5d04527ef
2 changes: 1 addition & 1 deletion crates/sui/tests/full_node_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1034,7 +1034,7 @@ async fn get_obj_read_from_node(
}
}

#[tokio::test]
#[sim_test]
async fn test_get_objects_read() -> Result<(), anyhow::Error> {
telemetry_subscribers::init_for_testing();

Expand Down
4 changes: 2 additions & 2 deletions crates/sui/tests/reconfiguration_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ use sui_config::ValidatorInfo;
use sui_core::authority_active::checkpoint_driver::{
checkpoint_process_step, CheckpointProcessControl,
};
use sui_macros::sim_test;
use sui_node::SuiNode;
use sui_types::base_types::{ObjectRef, SequenceNumber, SuiAddress};
use sui_types::crypto::{
Expand All @@ -25,8 +26,7 @@ use test_utils::objects::{generate_gas_object_with_balance, test_gas_objects};
use test_utils::test_account_keys;
use test_utils::transaction::{submit_shared_object_transaction, submit_single_owner_transaction};

#[tokio::test(flavor = "current_thread")]
#[ignore]
#[sim_test(flavor = "current_thread")]
async fn reconfig_end_to_end_tests() {
telemetry_subscribers::init_for_testing();

Expand Down