mirror of
https://github.com/odin-lang/Odin.git
synced 2026-04-19 21:10:30 +00:00
Removed unneded semicolons.
This commit is contained in:
@@ -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)
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user