From 54f04dd7de92a323ea71b4bb5aec1a9f37dca673 Mon Sep 17 00:00:00 2001 From: Jakub Jezek Date: Wed, 11 Jan 2023 17:32:11 +0100 Subject: [PATCH] testing: refactor set_representation_colorspace to address new inputs --- tests/unit/openpype/pipeline/publish/test_publish_plugins.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/unit/openpype/pipeline/publish/test_publish_plugins.py b/tests/unit/openpype/pipeline/publish/test_publish_plugins.py index 54b82393d4..92e215c582 100644 --- a/tests/unit/openpype/pipeline/publish/test_publish_plugins.py +++ b/tests/unit/openpype/pipeline/publish/test_publish_plugins.py @@ -167,13 +167,13 @@ class TestPipelinePublishPlugins(TestPipeline): plugin = publish_plugins.ExtractorColormanaged() plugin.set_representation_colorspace( representation_nuke, context, - config_data_nuke, file_rules_nuke + colorspace_settings=(config_data_nuke, file_rules_nuke) ) # load plugin function for testing plugin = publish_plugins.ExtractorColormanaged() plugin.set_representation_colorspace( representation_hiero, context, - config_data_hiero, file_rules_hiero + colorspace_settings=(config_data_hiero, file_rules_hiero) ) colorspace_data_nuke = representation_nuke.get("colorspaceData")