fix test message

This commit is contained in:
onyx-and-iris 2024-12-22 22:00:38 +00:00
parent 4bed4a8563
commit 31effc9d8e

View File

@ -6,7 +6,7 @@ func TestRandomiserMix(t *testing.T) {
r := New(42)
r.mix(15)
if r.secret != 37 {
t.Errorf("r.secret: got = %d want = 3", r.secret)
t.Errorf("r.secret: got = %d want = 37", r.secret)
}
}