You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
unit test fails with latest goo and ontologies_linked_data:
2) Failure:
TestSearchController#test_search_obo_id [/srv/ontoportal/ontologies_api/test/controllers/test_search_controller.rb:270]:
Failed assertion, no message given.
I think this line assert acr_1 === ncit_acronym || acr_1 === ogms_acronym can be rewritten as assert_includes [ncit_acronym, ogms_acronym], acr_1 to get a better feedback from unit test
if we do that we see more useful error:
1) Failure:
TestSearchController#test_search_obo_id [/srv/ontoportal/ontologies_api/test/controllers/test_search_controller.rb:270]:
Expected ["NCIT", "OGMS"] to include "CNO".
The text was updated successfully, but these errors were encountered:
unit test fails with latest goo and ontologies_linked_data:
I think this line
assert acr_1 === ncit_acronym || acr_1 === ogms_acronym
can be rewritten asassert_includes [ncit_acronym, ogms_acronym], acr_1
to get a better feedback from unit testif we do that we see more useful error:
The text was updated successfully, but these errors were encountered: