refactor: reorganize imports in probabilityUtils test file for clarity

This commit is contained in:
Marc Emmanuel 2026-02-08 21:02:34 +01:00
parent efad00b1d2
commit a8951a3bda

View file

@ -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", () => {