Skip to content

Commit ab9347b

Browse files
fix: correct fite_path_dest → file_path_dest typo
1 parent f3f7baa commit ab9347b

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

toolchain/mfc/test/case.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -477,11 +477,11 @@ def create_input_lagrange(path_test):
477477
file.write("0.5\t0.5\t0.5\t0.0\t0.0\t0.0\t8.0e-03\t0.0")
478478

479479

480-
def copy_input_lagrange(path_example_input, path_test):
480+
def copy_input_lagrange(path_examplse_input, path_test):
481481
folder_path_dest = path_test + "/input/"
482-
fite_path_dest = folder_path_dest + "lag_bubbles.dat"
482+
file_path_dest = folder_path_dest + "lag_bubbles.dat"
483483
file_path_src = common.MFC_EXAMPLE_DIRPATH + path_example_input + "/input/lag_bubbles.dat"
484484
if not os.path.exists(folder_path_dest):
485485
os.mkdir(folder_path_dest)
486486

487-
shutil.copyfile(file_path_src, fite_path_dest)
487+
shutil.copyfile(file_path_src, file_path_dest)

0 commit comments

Comments
 (0)