From 15d97ccaa7a2ba206cebd7cfbacf49725317aa40 Mon Sep 17 00:00:00 2001 From: Joke Book Date: Thu, 7 May 2020 16:38:45 +0100 Subject: [PATCH] End randIntWithout test case with t.end() --- test/unit/util_math.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/unit/util_math.js b/test/unit/util_math.js index 7196df952..c93f17fa6 100644 --- a/test/unit/util_math.js +++ b/test/unit/util_math.js @@ -65,4 +65,6 @@ test('inclusiveRandIntWithout', t => { t.strictEqual(withRandomValue(3 / 4, 10, 14, 10), 14); t.strictEqual(withRandomValue(0 / 4, 10, 14, 10), 11); + + t.end(); });