From 84320919e2cfb2abda9e7c97dbbd2234f8f7f5c6 Mon Sep 17 00:00:00 2001 From: Fintan Halpenny Date: Mon, 16 Feb 2026 16:07:56 +0000 Subject: [PATCH] node/tests/e2e: use assert_eq! in test The use of `assert_eq!` will highlight the differences in the two values when it fails. --- crates/radicle-node/src/tests/e2e.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/radicle-node/src/tests/e2e.rs b/crates/radicle-node/src/tests/e2e.rs index 8662990d..e2fbf0f9 100644 --- a/crates/radicle-node/src/tests/e2e.rs +++ b/crates/radicle-node/src/tests/e2e.rs @@ -454,7 +454,7 @@ fn test_fetch_followed_remotes() { .collect::, _>>() .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)); }