Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
h-mayorquin committed Dec 10, 2024
1 parent f91a077 commit 6147f84
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def __init__(self, folder_path: DirectoryPath, verbose: bool = False, es_key: st
Path to the folder of .mpx files.
verbose: boolean
Allows verbose.
Default is True.
Default is False.
es_key: str, default: "ElectricalSeries"
"""
super().__init__(folder_path=folder_path, verbose=verbose, es_key=es_key)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ def test_get_json_schema_from_example_data_interface():
"type": "string",
"description": "Path to the folder of .mpx files.",
},
"verbose": {"default": True, "type": "boolean", "description": "Allows verbose.\nDefault is True."},
"verbose": {"default": False, "type": "boolean", "description": "Allows verbose.\nDefault is False."},
"es_key": {"default": "ElectricalSeries", "type": "string"},
},
"required": ["folder_path"],
Expand Down

0 comments on commit 6147f84

Please sign in to comment.