Fixed some tests

This commit is contained in:
Neil Toronto 2011-11-25 19:00:05 -07:00
parent 553c72ab28
commit 4a8259a4e7
2 changed files with 3 additions and 3 deletions

View File

@ -1,12 +1,12 @@
#lang racket
(require plot plot/utils)
(require plot plot/utils unstable/flonum)
(plot-x-label #f)
(plot-y-label #f)
(define stops (list (* 2 (inexact->exact -max.0))
-max.0 -min.0 0 +min.0 +max.0
-max.0 -min.0 0.0 +min.0 +max.0
(* 2 (inexact->exact +max.0))))
(define (extreme-real->string x)

View File

@ -2,7 +2,7 @@
;; These tests aren't meant to be run so much as manipulated after running
(require plot plot/utils)
(require plot plot/utils unstable/flonum)
(parameterize ([plot-x-transform log-transform])
(plot (function values +min.0 1)))