Skip to content

Commit

Permalink
fix: corrected typo in omex-library
Browse files Browse the repository at this point in the history
  • Loading branch information
jonrkarr committed Oct 5, 2021
1 parent b38e3cc commit d7d112a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions biosimulators_utils/omex_meta/data_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ class OmexMetaSchema(str, enum.Enum):
rdf_triples = 'rdf_triples'


BIOSIMULATIONS_ROOT_URI_FORMAT = 'http://omex-libary.org/{}.omex'
BIOSIMULATIONS_ROOT_URI_PATTERN = r'^http://omex-libary\.org/.*?\.omex$'
BIOSIMULATIONS_ROOT_URI_FORMAT = 'http://omex-library.org/{}.omex'
BIOSIMULATIONS_ROOT_URI_PATTERN = r'^http://omex-library\.org/.*?\.omex$'

BIOSIMULATIONS_PREDICATE_TYPES = {
'http://dublincore.org/specifications/dublin-core/dcmi-terms/title': {
Expand Down
2 changes: 1 addition & 1 deletion tests/omex_meta/test_omex_meta_io.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def test_BiosimulationsOmexMetaReader_get_combine_archive_uri(self):
rdf, errors, warnings = io.BiosimulationsOmexMetaReader.read_rdf(self.FIXTURE)
triples = io.BiosimulationsOmexMetaReader.get_rdf_triples(rdf)
root_uri, errors, warnings = io.BiosimulationsOmexMetaReader.get_combine_archive_uri(triples)
self.assertEqual(root_uri, 'http://omex-libary.org/BioSim0001.omex')
self.assertEqual(root_uri, 'http://omex-library.org/BioSim0001.omex')
self.assertEqual(errors, [])
self.assertEqual(warnings, [])

Expand Down

0 comments on commit d7d112a

Please sign in to comment.