From e485eda6110e89a70c11672f89cb96187b8fc1ad Mon Sep 17 00:00:00 2001 From: Jakub Jezek Date: Tue, 17 Sep 2024 10:36:31 +0200 Subject: [PATCH] Rename test file for OTIO export plugin - Renamed test_transcoding.py to test_export_otio.py - Updated import path for get_image_info_metadata function. --- .../test_transcoding.py => plugins/load/test_export_otio.py} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename client/ayon_core/tests/{lib/test_transcoding.py => plugins/load/test_export_otio.py} (95%) diff --git a/client/ayon_core/tests/lib/test_transcoding.py b/client/ayon_core/tests/plugins/load/test_export_otio.py similarity index 95% rename from client/ayon_core/tests/lib/test_transcoding.py rename to client/ayon_core/tests/plugins/load/test_export_otio.py index 4fe694631f..cdcb15033a 100644 --- a/client/ayon_core/tests/lib/test_transcoding.py +++ b/client/ayon_core/tests/plugins/load/test_export_otio.py @@ -1,7 +1,7 @@ import pytest import logging from pathlib import Path -from ayon_core.lib.transcoding import get_image_info_metadata +from ayon_core.plugins.load.export_otio import get_image_info_metadata logger = logging.getLogger('test_transcoding')