Skip to content

Commit

Permalink
update parameterized
Browse files Browse the repository at this point in the history
  • Loading branch information
Guanheng Zhang committed Mar 8, 2021
1 parent 9e114e4 commit 4e3ba74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/common/parameterized_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ def get_asset_path(*paths):

def load_params(*paths):
with open(get_asset_path(*paths), 'r') as file:
return [param(json.loads(line)) for line in file]
return [param(line) for line in json.load(file)['meta_data']]

0 comments on commit 4e3ba74

Please sign in to comment.