From 4f2b1386e52da7900f253cda7df27277c66f9425 Mon Sep 17 00:00:00 2001 From: Matthew Butterick Date: Sat, 16 Jun 2018 22:50:02 -0700 Subject: [PATCH] Update test-txexpr-stx.rkt --- txexpr/test/test-txexpr-stx.rkt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/txexpr/test/test-txexpr-stx.rkt b/txexpr/test/test-txexpr-stx.rkt index 5fe7df5..59712f4 100644 --- a/txexpr/test/test-txexpr-stx.rkt +++ b/txexpr/test/test-txexpr-stx.rkt @@ -49,9 +49,9 @@ (check-pred stx-txexpr-attrs? '()) (check-pred stx-txexpr-attrs? #'()) -(check-pred stx-txexpr-attrs? '((id "top") (stlye "color: blue"))) -(check-pred stx-txexpr-attrs? #'((id "top") (stlye "color: blue"))) -(check-pred stx-txexpr-attrs? `((id "top") (stlye ,#'"color: blue"))) +(check-pred stx-txexpr-attrs? '((id "top") (style "color: blue"))) +(check-pred stx-txexpr-attrs? #'((id "top") (style "color: blue"))) +(check-pred stx-txexpr-attrs? `((id "top") (style ,#'"color: blue"))) ;; ---------------------------------------------------------