aboutsummaryrefslogtreecommitdiff
path: root/tests/recurring.scm
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2020-06-30 01:58:19 +0200
committerHugo Hörnquist <hugo@lysator.liu.se>2020-07-07 13:10:38 +0200
commit715e36ab81389ebf53ea158027d0a83f144eee0e (patch)
tree1e9522ba3bf4aef212d0b1d179e9bf1db2e6f60b /tests/recurring.scm
parentRename attributes => properties, properties => parameters. (diff)
downloadcalp-715e36ab81389ebf53ea158027d0a83f144eee0e.tar.gz
calp-715e36ab81389ebf53ea158027d0a83f144eee0e.tar.xz
Finished renamining attribute to property.
Diffstat (limited to 'tests/recurring.scm')
-rw-r--r--tests/recurring.scm6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/recurring.scm b/tests/recurring.scm
index c5ae43c6..3922f1b6 100644
--- a/tests/recurring.scm
+++ b/tests/recurring.scm
@@ -1,6 +1,6 @@
(((srfi srfi-41) stream-take stream-map stream->list stream-car)
((datetime util) day-stream)
- ((vcomponent base) extract attr)
+ ((vcomponent base) extract prop)
((vcomponent) parse-calendar)
((vcomponent recurrence) generate-recurrence-set))
@@ -27,7 +27,7 @@ END:VEVENT"
(generate-recurrence-set ev)))
(stream->list
5 (day-stream
- (attr ev 'DTSTART))))
+ (prop ev 'DTSTART))))
;; We run the exact same thing a secound time, since I had an error with
;; that during development.
@@ -40,7 +40,7 @@ END:VEVENT"
(stream->list
(stream-take
5 (day-stream
- (attr ev 'DTSTART)))))
+ (prop ev 'DTSTART)))))
(define ev