Radish alpha
h
Radicle Heartwood Protocol & Stack
Radicle
Git (anonymous pull)
Log in to clone via SSH
node/tests/e2e: use assert_eq! in test
✗ CI failure Fintan Halpenny committed 2 months ago
commit 695137476a724856f44578e09e3d028f1e2aba68
parent d688e6679caa1dfcd665747eeba48c45b3601b88
1 failed (1 total) View logs
1 file changed +1 -1
modified crates/radicle-node/src/tests/e2e.rs
@@ -454,7 +454,7 @@ fn test_fetch_followed_remotes() {
        .collect::<Result<HashSet<_>, _>>()
        .unwrap();

-
    assert!(bob_remotes.len() == followed.len() + 1);
+
    assert_eq!(bob_remotes.len(), followed.len() + 1);
    assert!(bob_remotes.is_superset(&followed));
    assert!(bob_remotes.contains(&alice.id));
}