Skip to content

Commit

Permalink
updated tests
Browse files Browse the repository at this point in the history
  • Loading branch information
colganwi committed Feb 7, 2024
1 parent 73cbc08 commit d664390
Showing 1 changed file with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -214,9 +214,9 @@ def test_simulator_basic(self):
"9": [0, 0, 0, 0, 0, 0, 0, 0, 0],
"10": [0, 0, 0, 3, 0, 0, 3, 0, 0],
"11": [0, 0, 0, 1, 3, 0, 0, 0, 0],
"12": [0, 0, 0, 1, 3, 3, 0, 0, 0],
"13": [0, 0, 0, 1, 3, 3, 3, 1, 0],
"14": [0, 0, 0, 1, 3, 3, 0, 0, 0],
"12": [0, 0, 0, 1, 0, 0, 0, 0, 0],
"13": [3, 0, 0, 1, 3, 3, 1, 3, 0],
"14": [3, 0, 0, 1, 3, 4, 2, 0, 0],
},
orient="index",
columns=[0, 1, 2, 3, 4, 5, 6, 7, 8],
Expand Down Expand Up @@ -254,14 +254,14 @@ def test_simulator_with_missing(self):

expected_character_matrix = pd.DataFrame.from_dict(
{
"7": [-1, -1, -1, -1, -1, -1, 0, 0, 0],
"8": [0, 0, 0, -1, -1, -1, 0, 0, 0],
"7": [0, 0, 0, -1, -1, -1, 0, 0, 0],
"8": [-1, -1, -1, -1, -1, -1, 0, 0, 0],
"9": [0, 0, 0, 4, 0, 0, -1, -1, -1],
"10": [-1, -1, -1, 4, 0, 0, -1, -1, -1],
"11": [0, 0, 0, 1, 0, 0, -1, -1, -1],
"12": [0, 0, 0, 1, 0, 0, -1, -1, -1],
"10": [-1, -1, -1, 4, 3, 0, -1, -1, -1],
"11": [-1, -1, -1, 0, 0, 0, -1, -1, -1],
"12": [3, 3, 0, 3, 0, 0, -1, -1, -1],
"13": [-1, -1, -1, 0, 0, 0, -1, -1, -1],
"14": [0, 0, 0, -1, -1, -1, -1, -1, -1],
"14": [-1, -1, -1, -1, -1, -1, -1, -1, -1],
},
orient="index",
columns=[0, 1, 2, 3, 4, 5, 6, 7, 8],
Expand Down

0 comments on commit d664390

Please sign in to comment.