From 2ea1dfb5e7f822a2dc7a9a130b03199507e8fb9f Mon Sep 17 00:00:00 2001 From: hellerve Date: Thu, 15 Oct 2020 13:16:49 +0200 Subject: [PATCH] tests: remove determinism test --- test/random.carp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/test/random.carp b/test/random.carp index 26681517..943cc420 100644 --- a/test/random.carp +++ b/test/random.carp @@ -3,11 +3,6 @@ (use-all Random Test) (deftest test - (assert-op test - 0.658908 - (Random.random) - "deterministic randomization works as expected" - Double.approx) (assert-op test 0.536041 (do (Random.seed-from 33333.0) (Random.random))