Skip to content

Commit

Permalink
Fixed flake8 error line length
Browse files Browse the repository at this point in the history
  • Loading branch information
John Chase committed Sep 23, 2019
1 parent 1e1e0eb commit d5a673c
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions sourcetracker/tests/test_sourcetracker.py
Original file line number Diff line number Diff line change
Expand Up @@ -1306,9 +1306,11 @@ def test_gibbs_fa_with_filter(self):
[[7, 0, 5], [1, 0, 5], [2, 40, 0]],
columns=["feat1", "feat2", "feat3"],
index=['source1', 'source2', 'Unknown'])
print(feats_gibbs[1])
pd.testing.assert_frame_equal(sink1_feats.astype(np.int32), feats_gibbs[0])
pd.testing.assert_frame_equal(sink2_feats.astype(np.int32), feats_gibbs[1])

pd.testing.assert_frame_equal(sink1_feats.astype(np.int32),
feats_gibbs[0])
pd.testing.assert_frame_equal(sink2_feats.astype(np.int32),
feats_gibbs[1])


class TestGibbsWrapper(TestCase):
Expand Down

0 comments on commit d5a673c

Please sign in to comment.