Skip to content

Commit

Permalink
fix test with latest chado image
Browse files Browse the repository at this point in the history
  • Loading branch information
abretaud committed Aug 1, 2018
1 parent 2af6145 commit e6f4f08
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ History
- 2.1.3
- bugfix: make --species a mandatory arg for organism creation
- bugfix: fix features deletion when deleting an analysis or an organism
- update chado docker image
- 2.1.2
- skip whole database schema reflection for simple tasks (analysis and organism management)
Expand Down
4 changes: 2 additions & 2 deletions test/cvterm_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def test_get_id_by_synonym(self):

term = self.ci.get_cvterm_id(name='lives inside of', cv='relationship', allow_synonyms=True)

assert term == 415, "Got cvterm id by synonym"
assert term == 431, "Got cvterm id by synonym"

def test_get_id_by_name_synmultiple(self):

Expand All @@ -30,7 +30,7 @@ def test_get_id_by_name_synmultiple(self):

def test_get_name(self):

term = self.ci.get_cvterm_name(415)
term = self.ci.get_cvterm_name(431)

assert term == 'endoparasite_of', "Got cvterm name"

Expand Down

0 comments on commit e6f4f08

Please sign in to comment.