Skip to content

Commit

Permalink
fix swift tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Sajjon committed Dec 28, 2024
1 parent e0452fa commit 6cd7a60
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ extension AccountPath {
case let .account(value):
self = value
case .identity, .bip44Like:
throw SargonError.WrongEntityKind(expected: .account, found: .identity)
throw SargonError.WrongEntityKind(expected: "account", found: "identity")
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ extension IdentityPath {
case let .identity(value):
self = value
case .account, .bip44Like:
throw SargonError.WrongEntityKind(expected: .identity, found: .account)
throw SargonError.WrongEntityKind(expected: "identity", found: "account")
}
}

Expand Down

0 comments on commit 6cd7a60

Please sign in to comment.