diff --git a/collects/tests/racket/format.rkt b/collects/tests/racket/format.rkt index a48a1fc550..978e3e52ff 100644 --- a/collects/tests/racket/format.rkt +++ b/collects/tests/racket/format.rkt @@ -268,3 +268,8 @@ (tc (~r 3735928559 #:base '(up 16) #:precision 6 #:notation 'exponential) ;; note rounding! "D.EADBEFĂ—16^+07") + +(tc (~r 33.99508664763296 #:precision 1 #:min-width 5) + " 33.1") +(tc (~r 33.99508664763296 #:precision 2 #:min-width 7) + " 33.1")