aboutsummaryrefslogtreecommitdiff
path: root/tests/vcomponent.scm
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2020-05-09 21:43:16 +0200
committerHugo Hörnquist <hugo@lysator.liu.se>2020-05-09 21:43:16 +0200
commitc1feb55a2013116c3291cf0df26f9ab39ad3e8c3 (patch)
tree7e7c2b0b756e45a1fd1b177bb137d3225560bc37 /tests/vcomponent.scm
parentUn-escape escaped characters. Slow? (diff)
downloadcalp-c1feb55a2013116c3291cf0df26f9ab39ad3e8c3.tar.gz
calp-c1feb55a2013116c3291cf0df26f9ab39ad3e8c3.tar.xz
New parser now on feature parity with old.
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 c64f1a9b..7a392e9e 100644
--- a/tests/vcomponent.scm
+++ b/tests/vcomponent.scm
@@ -2,11 +2,11 @@
((vcomponent) parse-calendar))
(define ev (call-with-input-string
- "BEGIN:VEVENT
+ "BEGIN:DUMMY
KEY:value
-END:VEVENT"
+END:DUMMY"
parse-calendar))
-(test-assert (eq? #f (attr ev 'MISSING)) )
+(test-assert (eq? #f (attr ev 'MISSING)))
(test-assert (attr ev 'KEY))
(test-equal "value" (attr ev 'KEY))