From a8951a3bdad20644696fff5c5d1ae074ab925355 Mon Sep 17 00:00:00 2001 From: Marc Emmanuel Date: Sun, 8 Feb 2026 21:02:34 +0100 Subject: [PATCH] refactor: reorganize imports in probabilityUtils test file for clarity --- src/utils/probabilityUtils.test.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/utils/probabilityUtils.test.ts b/src/utils/probabilityUtils.test.ts index e9a0548e..53f2fbc0 100644 --- a/src/utils/probabilityUtils.test.ts +++ b/src/utils/probabilityUtils.test.ts @@ -1,15 +1,15 @@ -import { describe, expect, it, vi, beforeEach, afterEach } from "vitest"; +import { describe, expect, it } from "vitest"; import { - rand, - P, + biased, each, gauss, + generateSeed, + getNumberInRange, + P, Pint, ra, + rand, rw, - biased, - getNumberInRange, - generateSeed, } from "./probabilityUtils"; describe("rand", () => {