From 6322606335f3ceb1eb45a43c1f3c77f1c2dcfc54 Mon Sep 17 00:00:00 2001 From: lew Date: Thu, 9 Apr 2026 22:28:47 +0100 Subject: [PATCH] fix: corrects a test that could never fail post-name change --- src/web.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/web.rs b/src/web.rs index 685274c..9c8d908 100644 --- a/src/web.rs +++ b/src/web.rs @@ -742,6 +742,6 @@ mod tests { .unwrap() .collect(); let content = std::fs::read_to_string(entries[0].as_ref().unwrap().path()).unwrap(); - assert!(!content.contains("drawing = \"2026")); + assert!(content.contains("drawing = \"\"")); } }