Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
quexten committed Dec 19, 2024
1 parent 5afaae6 commit 184a009
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/bitwarden-ssh/src/import.rs
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ mod tests {
fn import_wrong_label_error() {
let private_key = include_str!("../resources/import/wrong_label");
let result = import_key(private_key.to_string(), Some("".to_string()));
assert_eq!(result.unwrap_err(), SshKeyImportError::ParsingError);
assert_eq!(result.unwrap_err(), SshKeyImportError::UnsupportedKeyType);
}

#[test]
Expand Down

0 comments on commit 184a009

Please sign in to comment.