We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e114e4 commit 4e3ba74Copy full SHA for 4e3ba74
test/common/parameterized_utils.py
@@ -14,4 +14,4 @@ def get_asset_path(*paths):
14
15
def load_params(*paths):
16
with open(get_asset_path(*paths), 'r') as file:
17
- return [param(json.loads(line)) for line in file]
+ return [param(line) for line in json.load(file)['meta_data']]
0 commit comments