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"))) ;; ---------------------------------------------------------