From 8e6dab8b5d4d0ccd15e1f2df4ae25e8b53a543b8 Mon Sep 17 00:00:00 2001 From: Matthew Butterick Date: Tue, 12 Mar 2019 02:27:54 -0700 Subject: [PATCH] complexify --- pitfall/ptest/test20.coffee | 2 +- pitfall/ptest/test20.rkt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pitfall/ptest/test20.coffee b/pitfall/ptest/test20.coffee index 6e1b0b4a..b0fbd658 100644 --- a/pitfall/ptest/test20.coffee +++ b/pitfall/ptest/test20.coffee @@ -11,7 +11,7 @@ make = (doc) -> # Set the font, draw some text doc.font('the-font') .fontSize(40) - .text('o', 100, 100, {width: false}) + .text('Fira OTF rifle fire', 100, 100, {width: false}) doc.end() diff --git a/pitfall/ptest/test20.rkt b/pitfall/ptest/test20.rkt index b46d12dd..7bc5cd92 100644 --- a/pitfall/ptest/test20.rkt +++ b/pitfall/ptest/test20.rkt @@ -13,7 +13,7 @@ ;; Set the font, draw some text [font doc "the-font"] [font-size doc 40] - [text doc "o" 100 100]) + [text doc "Fira OTF rifle fire" 100 100]) ;; test against non-subsetted font version (define-runtime-path this "test20rkt.pdf")