From 2f79da027729c6f84427cb2cbfb5a63d52006004 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20H=C3=B6rnquist?= Date: Tue, 24 Aug 2021 19:38:42 +0200 Subject: Warnings are errors when running tests. Should prevent warnings from slipping through the cracks. --- tests/vcomponent.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tests/vcomponent.scm') diff --git a/tests/vcomponent.scm b/tests/vcomponent.scm index 15c83845..28f1cf91 100644 --- a/tests/vcomponent.scm +++ b/tests/vcomponent.scm @@ -7,10 +7,10 @@ (define ev (call-with-input-string "BEGIN:DUMMY -KEY:value +X-KEY:value END:DUMMY" parse-calendar)) (test-assert (eq? #f (prop ev 'MISSING))) -(test-assert (prop ev 'KEY)) -(test-equal "value" (prop ev 'KEY)) +(test-assert (prop ev 'X-KEY)) +(test-equal "value" (prop ev 'X-KEY)) -- cgit v1.2.3