From 4fcb6ef15fbb7073c189dcc09711a76c544c81fc Mon Sep 17 00:00:00 2001 From: Taylor R Campbell Date: Wed, 7 Nov 2018 16:00:48 +0000 Subject: [PATCH] Use a fresh random state for randomized tests. --- tests/runtime/test-random.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/runtime/test-random.scm b/tests/runtime/test-random.scm index af5640f0a..d68aa8286 100644 --- a/tests/runtime/test-random.scm +++ b/tests/runtime/test-random.scm @@ -56,7 +56,7 @@ USA. (lambda () ;; XXX Should make the seed more compact than just the original ;; complete state. - (let ((state (make-random-state))) + (let ((state (make-random-state #t))) (with-test-properties (lambda () ;; Ensure we don't accidentally use the global state. -- 2.25.1