Skip to content

Commit

Permalink
bugfix contingency dataframe check
Browse files Browse the repository at this point in the history
  • Loading branch information
scottgigante committed Mar 2, 2019
1 parent cc57c51 commit 14ab882
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/test_io.py
Original file line number Diff line number Diff line change
Expand Up @@ -336,8 +336,8 @@ def test_fcs():
np.testing.assert_array_equal(meta[key], int(X_meta[key]), key)
elif key == "_channels_":
for column in meta[key].columns:
X_column = X_meta[key]['$PnB'].astype(
meta[key]['$PnB'].dtype)
X_column = X_meta[key][column].astype(
meta[key][column].dtype)
np.testing.assert_array_equal(
meta[key][column], X_column, key + column)
else:
Expand Down

0 comments on commit 14ab882

Please sign in to comment.