Skip to content

Commit

Permalink
Unittest for scrypt fails on Windows due to no scrypt support
Browse files Browse the repository at this point in the history
Added  condition to skip it
  • Loading branch information
r8d8 committed Jul 27, 2017
1 parent 28a0fff commit 850efe2
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions emerald-core/tests/keystore_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -260,6 +260,8 @@ fn should_decode_hd_wallet_keyfile() {
}

#[test]
//TODO:1 remove condition after fix for `scrypt` on Windows
#[cfg(not(target_os = "windows"))]
fn should_use_security_level() {
let sec = KdfDepthLevel::Normal;
let kf = KeyFile::new("1234567890", &sec, None, None).unwrap();
Expand Down

0 comments on commit 850efe2

Please sign in to comment.