Skip to content

Commit

Permalink
fix test cases
Browse files Browse the repository at this point in the history
  • Loading branch information
hsiaoyi0504 committed Mar 21, 2018
1 parent 2b712ca commit 054e70a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dc/test_utils.py
Expand Up @@ -6,7 +6,7 @@ class test_get_pubmed_ids_from_rsids(unittest.TestCase):
def test(self):
rsids = ['7041', '4588']
pubmed_ids = get_pubmed_ids_from_rsids(rsids)
self.assertEqual(len(pubmed_ids), 400)
self.assertEqual(len(pubmed_ids), 200)
self.assertIsInstance(pubmed_ids, list)
for id in pubmed_ids:
self.assertIsInstance(id, str)
Expand Down

0 comments on commit 054e70a

Please sign in to comment.