Skip to content
This repository has been archived by the owner on Nov 6, 2020. It is now read-only.

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
revert test fix for nightly
Browse files Browse the repository at this point in the history
insipx committed Dec 23, 2018

Verified

This commit was signed with the committer’s verified signature. The key has expired.
BridgeAR Ruben Bridgewater
1 parent afb52a4 commit f37089b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions parity/helpers.rs
Original file line number Diff line number Diff line change
@@ -485,9 +485,9 @@ but the first password is trimmed
#[test]
fn test_join_set() {
let mut test_set = HashSet::new();
test_set.insert("0x0000000000000000000000000000000000000000".to_string());
test_set.insert("0x1111111111111111111111111111111111111111".to_string());
assert_eq!("0x0000000000000000000000000000000000000000,0x1111111111111111111111111111111111111111".to_string(),
test_set.insert("0x0000000000000000000000000000000000000000".to_string());
assert_eq!("0x1111111111111111111111111111111111111111,0x0000000000000000000000000000000000000000".to_string(),
join_set(Some(&test_set)).unwrap());
}
}

0 comments on commit f37089b

Please sign in to comment.