Skip to content

Commit

Permalink
fix(test): Reverted tests' assertion data
Browse files Browse the repository at this point in the history
  • Loading branch information
KirilMihaylov committed Apr 26, 2023
1 parent 9ed58cc commit c33a5c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions market-data-feeder/src/tests/integration_dev_network.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ async fn get_account_data_example() {
let client = Client::new(&config).await.unwrap();

let account = query_account_data(&client, ORACLE_ADDRESS).await.unwrap();
assert_eq!(account.account_number, 20);
assert_eq!(account.account_number, 15);
assert_eq!(account.address, ToOwned::to_owned(ORACLE_ADDRESS));
}

Expand Down Expand Up @@ -60,7 +60,7 @@ async fn get_account_data_example_dev() {
let client = Client::new(&config).await.unwrap();

let account = query_account_data(&client, ORACLE_ADDRESS).await.unwrap();
assert_eq!(account.account_number, 20);
assert_eq!(account.account_number, 15);
}

// // TODO: move to integration test = > start network with docker and exec transaction there
Expand Down

0 comments on commit c33a5c1

Please sign in to comment.