From e38ae9d91911a86d8f2683d35cc92b6a02834631 Mon Sep 17 00:00:00 2001 From: Petr Kalis Date: Fri, 21 Oct 2022 16:45:14 +0200 Subject: [PATCH] OP-3426 - refactor - rename workfile --- tests/integration/hosts/maya/lib.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/integration/hosts/maya/lib.py b/tests/integration/hosts/maya/lib.py index 6610fac118..1411ccca5f 100644 --- a/tests/integration/hosts/maya/lib.py +++ b/tests/integration/hosts/maya/lib.py @@ -19,7 +19,7 @@ class MayaHostFixtures(HostFixtures): src_path = os.path.join(download_test_data, "input", "workfile", - "test_project_test_asset_TestTask_v001.mb") + "test_project_test_asset_test_task_v001.mb") dest_folder = os.path.join(output_folder_url, self.PROJECT, self.ASSET, @@ -27,7 +27,7 @@ class MayaHostFixtures(HostFixtures): self.TASK) os.makedirs(dest_folder) dest_path = os.path.join(dest_folder, - "test_project_test_asset_TestTask_v001.mb") + "test_project_test_asset_test_task_v001.mb") shutil.copy(src_path, dest_path) yield dest_path