aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAndreas Stenmark <astenmark@users.noreply.github.com>2025-11-30 22:23:01 +0100
committerAndreas Stenmark <astenmark@users.noreply.github.com>2025-11-30 22:23:01 +0100
commit14a27b4d2f8654cb86b8ed39fe54d6338cdfb4fc (patch)
tree0dfb1dfc7ec47d93990783e68243072216e96b5b /tests
parentad11d3bea03eeb74e43fc518321943db7341e7be (diff)
Removed unneded semicolons.
Diffstat (limited to 'tests')
-rw-r--r--tests/core/math/rand/test_core_math_rand.odin6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/core/math/rand/test_core_math_rand.odin b/tests/core/math/rand/test_core_math_rand.odin
index 19f844086..5c2f4af84 100644
--- a/tests/core/math/rand/test_core_math_rand.odin
+++ b/tests/core/math/rand/test_core_math_rand.odin
@@ -87,11 +87,11 @@ test_issue_5978 :: proc(t:^testing.T) {
cases := []struct {
seed: u64,
expected: int,
- }{ {13, 1}, {27, 5} };
+ }{ {13, 1}, {27, 5} }
for c in cases {
- rand.reset(c.seed);
- i, _ := rand.choice_bit_set(s);
+ rand.reset(c.seed)
+ i, _ := rand.choice_bit_set(s)
testing.expectf(t, i == c.expected, "choice_bit_set returned %v with seed %v, expected %v", i, c.seed, c.expected)
}
}