Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
Signed-off-by: Patrik Stas <[email protected]>
  • Loading branch information
Patrik-Stas committed Dec 5, 2023
1 parent 6660926 commit 3e42245
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions aries/agents/rust/aries-vcx-agent/src/error/convertors.rs
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
use std::convert::From;

use aries_vcx::{
did_doc::error::DidDocumentBuilderError,
did_doc::{did_doc_sov::error::DidDocumentSovError, error::DidDocumentBuilderError},
errors::error::{AriesVcxError, AriesVcxErrorKind},
protocols::did_exchange::state_machine::generic::GenericDidExchange,
r#mod::error::DidDocumentSovError,
};
use aries_vcx_core::errors::error::AriesVcxCoreError;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ fn deabbreviate_service(
if service_type == "dm" {
OneOrList::One("DIDCommMessaging".to_string())
} else {
OneOrList::One(service_type.to_string())
OneOrList::One(service_type)
}
}
OneOrList::List(mut service_types) => {
Expand Down
1 change: 0 additions & 1 deletion did_core/did_methods/did_peer/tests/resolve_negative.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ use did_peer::{
resolver::{options::PublicKeyEncoding, PeerDidResolutionOptions, PeerDidResolver},
};
use did_resolver::traits::resolvable::DidResolvable;
use pretty_assertions::assert_eq;
use tokio::test;

async fn resolve_error(peer_did: &str) -> DidPeerError {
Expand Down

0 comments on commit 3e42245

Please sign in to comment.