Skip to content

Commit deee14b

Browse files
committed
one player game added to test_rsf; ints instead of str when note actual fractions
1 parent 75365bc commit deee14b

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

tests/test_rsf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@
3939
games.read_from_file("e01.efg"),
4040
[["1", "2"], ["1", "2"], ["1", "2"]],
4141
[
42-
np.array([[["1", "1"], ["4", "0"]], [["3", "0"], ["3", "0"]]]),
43-
np.array([[["1", "1"], ["4", "0"]], [["2", "0"], ["2", "0"]]]),
44-
np.array([[["1", "1"], ["0", "1"]], [["2", "0"], ["2", "0"]]]),
42+
np.array([[[1, 1], [4, 0]], [[3, 0], [3, 0]]]),
43+
np.array([[[1, 1], [4, 0]], [[2, 0], [2, 0]]]),
44+
np.array([[[1, 1], [0, 1]], [[2, 0], [2, 0]]]),
4545
],
4646
),
4747
# Myerson 2-card poker; game with chance node

0 commit comments

Comments
 (0)