From 4a8259a4e77ef306a5c611a00296263f09962da3 Mon Sep 17 00:00:00 2001 From: Neil Toronto Date: Fri, 25 Nov 2011 19:00:05 -0700 Subject: [PATCH] Fixed some tests --- collects/plot/tests/extreme-bounds-tests.rkt | 4 ++-- collects/plot/tests/selection-tests.rkt | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/collects/plot/tests/extreme-bounds-tests.rkt b/collects/plot/tests/extreme-bounds-tests.rkt index f541814ced..4abdabe561 100644 --- a/collects/plot/tests/extreme-bounds-tests.rkt +++ b/collects/plot/tests/extreme-bounds-tests.rkt @@ -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) diff --git a/collects/plot/tests/selection-tests.rkt b/collects/plot/tests/selection-tests.rkt index c8281fa592..36e97d1698 100644 --- a/collects/plot/tests/selection-tests.rkt +++ b/collects/plot/tests/selection-tests.rkt @@ -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)))