From 490e3d899ed591fd44c67af004b81e887795b47c Mon Sep 17 00:00:00 2001 From: PseudoKnight Date: Mon, 2 Dec 2024 14:53:04 -0800 Subject: [PATCH] Remove invalid rand() range test --- src/test/java/com/laytonsmith/core/functions/MathTest.java | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/test/java/com/laytonsmith/core/functions/MathTest.java b/src/test/java/com/laytonsmith/core/functions/MathTest.java index 7001636d1..c9bb5e573 100644 --- a/src/test/java/com/laytonsmith/core/functions/MathTest.java +++ b/src/test/java/com/laytonsmith/core/functions/MathTest.java @@ -177,11 +177,6 @@ public void testRand1() { fail("Didn't expect this test to pass"); } catch (ConfigRuntimeException e) { } - try { - a.exec(Target.UNKNOWN, env, C.onstruct(87357983597853791L)); - fail("Didn't expect this test to pass"); - } catch (ConfigRuntimeException e) { - } } @Test