Skip to content

Commit

Permalink
Mediator import of test_utils for MockLedger
Browse files Browse the repository at this point in the history
Signed-off-by: Bogdan Mircea <mirceapetrebogdan@gmail.com>
  • Loading branch information
bobozaur committed Oct 24, 2023
1 parent c519dce commit 372457d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion agents/rust/mediator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ tower-http = { version = "0.4.4", features = ["catch-panic"] }
url = "2.4.1"
uuid = "1.4.1"
mediation = { path = "./mediation" }
test_utils = { path = "../../../tools/test_utils" }

[dev-dependencies]
reqwest = { version = "0.11.20", features = ["blocking"] }
reqwest = { version = "0.11.20", features = ["blocking"] }
3 changes: 2 additions & 1 deletion agents/rust/mediator/src/aries_agent/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use aries_vcx::{
},
mediated_connection::pairwise_info::PairwiseInfo,
},
utils::{encryption_envelope::EncryptionEnvelope, mockdata::profile::mock_ledger::MockLedger},
utils::encryption_envelope::EncryptionEnvelope,
};
use aries_vcx_core::wallet::base_wallet::BaseWallet;
use mediation::storage::MediatorPersistence;
Expand All @@ -21,6 +21,7 @@ use messages::{
},
AriesMessage,
};
use test_utils::mockdata::mock_ledger::MockLedger;

use super::{transports::AriesTransport, Agent};
use crate::{aries_agent::utils::oob2did, utils::prelude::*};
Expand Down

0 comments on commit 372457d

Please sign in to comment.