Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
deepakunni3 committed Jul 7, 2020
1 parent 536426a commit b33114a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_string.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ def test_nodes_file(self):
node_file = os.path.join(self.string_output_dir, "nodes.tsv")
self.assertTrue(os.path.isfile(node_file))
node_df = pd.read_csv(node_file, sep="\t", header=0)
self.assertEqual((10, 7), node_df.shape)
self.assertEqual(['id', 'name', 'category', 'description', 'alias', 'xrefs',
self.assertEqual((10, 6), node_df.shape)
self.assertEqual(['id', 'name', 'category', 'description', 'xrefs',
'provided_by'], list(node_df.columns))
self.assertCountEqual(['ENSEMBL:ENSP00000000233',
'ENSEMBL:ENSP00000272298', 'ENSEMBL:ENSP00000253401',
Expand Down

0 comments on commit b33114a

Please sign in to comment.