From c792bed981fd10339af42f8c1e436097e2e533b7 Mon Sep 17 00:00:00 2001 From: "Kevin M. Rosenberg" Date: Thu, 28 Apr 2005 15:37:46 +0000 Subject: [PATCH] r10491: update tests for fix in fov units --- tests.lisp | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/tests.lisp b/tests.lisp index 6405c27..73e009b 100644 --- a/tests.lisp +++ b/tests.lisp @@ -21,7 +21,7 @@ (defun verify-results (alist blist) (every #'identity (mapcar - (lambda (a b) (numbers-within-percentage a b 0.001)) + (lambda (a b) (numbers-within-percentage a b 0.01)) alist blist))) (defmacro def-numeric-test (name test &rest values) @@ -48,7 +48,7 @@ (def-numeric-test :fov.2 (fov 50 24 16 :magnification 1 :units :feet) - 2.583338E-4 1.7222258E-4 3.10478E-4 1 0.328083 100) + 0.07874 0.052494 0.094634 1 0.328084 100) (def-numeric-test :fov.3 (fov 50 24 16 :image-distance 100 :units :mm) @@ -56,7 +56,7 @@ (def-numeric-test :fov.4 (fov 50 24 16 :image-distance 100 :units :feet) - 2.583338E-4 1.7222258E-4 3.10478E-4 1 0.328083 100) + 0.07874 0.052494 0.094634 1 0.328084 100) (def-numeric-test :fov.5 (fov 50 24 16 :object-distance 100 :units :mm) @@ -64,8 +64,7 @@ (def-numeric-test :fov.6 (fov 50 24 16 :object-distance (cl-photo::mm->feet 100) :units :feet) - 2.583338E-4 1.7222258E-4 3.10478E-4 1 0.328083 100) - + 0.07874 0.052494 0.094634 1 0.328084 100) (def-numeric-test :mag.1 (magnification :focal-length 50 :image-distance 100 :units :mm) 1) -- 2.34.1