Skip to content

Commit 3a20ca8

Browse files
committed
Suppress output during tests
1 parent 4936e27 commit 3a20ca8

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

frog/enhance-body.rkt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
[current-image-sizes-attr #f]
6969
[current-image-sizes '(320 600 1200)]
7070
[current-image-default-size 600]
71-
[current-verbosity 99])
71+
[current-verbosity 0])
7272
(test-equal? "Remote images"
7373
(responsive-images
7474
'((div ((class "figure")) (img ((src "//somehost.com/img/file.jpg"))))))

frog/responsive-images.rkt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,8 @@
5656

5757
(module+ test
5858
(when magick-available?
59-
(parameterize ([top example])
59+
(parameterize ([top example]
60+
[current-verbosity 0])
6061
(define tmp (find-system-path 'temp-dir))
6162
(define output (build-path tmp "600px-image.gif"))
6263
(test-eq? "resize"

0 commit comments

Comments
 (0)