Skip to content

Commit

Permalink
Remove ttest code
Browse files Browse the repository at this point in the history
  • Loading branch information
quexten committed Dec 19, 2024
1 parent 750db94 commit 51db1f3
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions crates/bitwarden-uniffi/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,8 @@ impl Client {
&self,
key_algorithm: bitwarden_ssh::generator::KeyAlgorithm,
) -> Result<bitwarden_ssh::SshKey> {
let test = bitwarden_ssh::generator::generate_sshkey(key_algorithm);
let a = test.map_err(|e| error::BitwardenError::E(error::Error::SshGenerationError(e)));
a
bitwarden_ssh::generator::generate_sshkey(key_algorithm)
.map_err(|e| error::BitwardenError::E(error::Error::SshGenerationError(e)))
}

pub fn import_ssh_key(
Expand Down

0 comments on commit 51db1f3

Please sign in to comment.