aboutsummaryrefslogtreecommitdiff
path: root/tests/vcomponent.scm
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2021-08-24 19:38:42 +0200
committerHugo Hörnquist <hugo@lysator.liu.se>2021-08-24 19:39:12 +0200
commit2f79da027729c6f84427cb2cbfb5a63d52006004 (patch)
tree18365f1a0ca8e9466a456ecc794a9bc19c9ded15 /tests/vcomponent.scm
parentFix warning calls in string->datetime. (diff)
downloadcalp-2f79da027729c6f84427cb2cbfb5a63d52006004.tar.gz
calp-2f79da027729c6f84427cb2cbfb5a63d52006004.tar.xz
Warnings are errors when running tests.
Should prevent warnings from slipping through the cracks.
Diffstat (limited to '')
-rw-r--r--tests/vcomponent.scm6
1 files changed, 3 insertions, 3 deletions
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))