Skip to content

Commit f7c10ec

Browse files
committed
update tests for new scrip location
1 parent c761bae commit f7c10ec

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/integ/h5tojson_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@
121121
out_file = os.path.join(out_dir, split_ext[0] + ".json")
122122
if not os.path.exists(file_path):
123123
sys.exit("file: " + file_path + " not found")
124-
cmd = "python ../../h5tojson/h5tojson.py " + file_path + " >" + out_file
124+
cmd = "python ../../h5json/h5tojson/h5tojson.py " + file_path + " >" + out_file
125125
print("cmd:", cmd)
126126

127127
rc = os.system(cmd)

test/integ/jsontoh5_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@
130130
out_file = os.path.join(out_dir, split_ext[0] + ".h5")
131131
if not os.path.exists(file_path):
132132
sys.exit("file: " + file_path + " not found")
133-
cmd = "python ../../jsontoh5/jsontoh5.py " + file_path + " " + out_file
133+
cmd = "python ../../h5json/jsontoh5/jsontoh5.py " + file_path + " " + out_file
134134
print("cmd:", cmd)
135135
rc = os.system(cmd)
136136
if rc != 0:

0 commit comments

Comments
 (0)