Skip to content

Commit

Permalink
Fix integration tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
fnando committed Oct 18, 2024
1 parent f05e643 commit f070528
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/crates/soroban-test/tests/it/integration/hello_world.rs
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ async fn invoke() {
.assert()
.stdout_as_str();
let dir = sandbox.dir();
let seed_phrase = std::fs::read_to_string(dir.join(".soroban/identity/test.toml")).unwrap();
let seed_phrase = std::fs::read_to_string(dir.join(".stellar/identity/test.toml")).unwrap();
let s = toml::from_str::<secret::Secret>(&seed_phrase).unwrap();
let secret::Secret::SeedPhrase { seed_phrase } = s else {
panic!("Expected seed phrase")
Expand Down Expand Up @@ -113,7 +113,7 @@ async fn invoke() {
},
)
.unwrap();
let sk_from_file = std::fs::read_to_string(dir.join(".soroban/identity/testone.toml")).unwrap();
let sk_from_file = std::fs::read_to_string(dir.join(".stellar/identity/testone.toml")).unwrap();

assert_eq!(sk_from_file, format!("secret_key = \"{secret_key_1}\"\n"));
let secret_key_1_readin = sandbox
Expand Down

0 comments on commit f070528

Please sign in to comment.