From bd46637210357b72d92a08a1b4a8c83fc0169b6b Mon Sep 17 00:00:00 2001 From: Jay McCarthy Date: Sat, 2 Jul 2011 13:51:31 -0700 Subject: [PATCH] This test is sensitive to the JIT, it seems --- collects/tests/rackunit/pr10950.rkt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/collects/tests/rackunit/pr10950.rkt b/collects/tests/rackunit/pr10950.rkt index 90b27fc7b6..e07a898c48 100644 --- a/collects/tests/rackunit/pr10950.rkt +++ b/collects/tests/rackunit/pr10950.rkt @@ -15,8 +15,8 @@ (test (regexp-match - (regexp (format "~a.*~a" - (regexp-quote "--------------------\ntests > #f\nUnnamed test \nFAILURE\nname: check3\nlocation: ") - - (regexp-quote "/collects/tests/rackunit/pr10950.rkt:14:51\nparams: \n--------------------\n0 success(es) 1 failure(s) 0 error(s) 1 test(s) run\n"))) + (regexp (format "~a.*~a.*~a" + (regexp-quote "--------------------\ntests > #f\nUnnamed test \nFAILURE\nname: check3\nlocation: ") + (regexp-quote "pr10950.rkt:14:51") + (regexp-quote "0 success(es) 1 failure(s) 0 error(s) 1 test(s) run\n"))) output))