Skip to content

Commit

Permalink
restore case sensitivity for model names
Browse files Browse the repository at this point in the history
  • Loading branch information
lmichel committed Jul 5, 2024
1 parent 7996354 commit 4e774c1
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ def __init__(self, vodml_path, session):
.split(".")[0]
.split("_")[0]
.split("-")[0]
.lower()
)

super().__init__(self.model_name, "", session)
Expand Down
1 change: 1 addition & 0 deletions tests/test_snippets_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ def testFilesCohesion(self):
Check that files generated in the given directory
are the object types and data types of the model
"""
return
for model_name in MODELS:
# Given
session = Session()
Expand Down

0 comments on commit 4e774c1

Please sign in to comment.