Skip to content

Commit

Permalink
fix typo in comment
Browse files Browse the repository at this point in the history
  • Loading branch information
stivalaa committed Feb 20, 2023
1 parent 3604410 commit 0fb50a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ def test_directed_change_stats_highschool():
assert [g.catattr['sex'][u] for u in g.outIterator(sex_na_node)].count(1) == 2
assert [g.catattr['sex'][u] for u in g.outIterator(sex_na_node)].count(2) == 2
# repeat for outcome binary variable, where Female (1) converted
# to 0, and Male (2) coverted to 1 (and the ingle NA value
# to 0, and Male (2) coverted to 1 (and the single NA value
# converted to 0, already tested above).
assert len([outcome_binvar[u] for u in g.inIterator(sex_na_node)]) == 4
assert [outcome_binvar[u] for u in g.inIterator(sex_na_node)].count(0) == 1
Expand Down

0 comments on commit 0fb50a4

Please sign in to comment.