From 920cd3b13e392c428cd72f0ad37d0c0d2479847d Mon Sep 17 00:00:00 2001 From: Laurenz Stampfl Date: Wed, 21 Aug 2024 17:12:31 +0200 Subject: [PATCH] debug --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 9591a325..ffc9a165 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -61,7 +61,7 @@ pub(crate) mod test_utils { let actual = std::fs::read(&path).unwrap(); - assert!(actual == content); + assert_eq!(actual, content); if REPLACE && &actual != content { std::fs::write(&path, content).unwrap();