From bfb1eed2e93d5b074be3d67cc23cfc1a11533017 Mon Sep 17 00:00:00 2001 From: Ryan Culpepper Date: Tue, 31 Aug 2010 17:15:36 -0600 Subject: [PATCH] updated test --- collects/tests/stxparse/test-exp.rkt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/collects/tests/stxparse/test-exp.rkt b/collects/tests/stxparse/test-exp.rkt index 824bdf86a6..fda7958aca 100644 --- a/collects/tests/stxparse/test-exp.rkt +++ b/collects/tests/stxparse/test-exp.rkt @@ -64,12 +64,12 @@ ;; Splicing (define-primitive-splicing-syntax-class (foo) - #:attrs (z x y) + #:attributes (z x y) #:description "foo" (lambda (stx fail) (syntax-case stx () [(a b c . rest) - (list #'rest 3 #'a #'b #'c)] + (list 3 #'a #'b #'c)] [_ (fail)]))) (tok (1 2 3 4) (f:foo 4)