From c419d33dd956ece2d8b0a65561eb3acbd29d2efe Mon Sep 17 00:00:00 2001 From: OPNA2608 Date: Mon, 7 Sep 2026 19:30:19 +0200 Subject: [PATCH] tests/cpu/Config_tests.cpp: Fix compat with yaml-cpp 0.9.0 Array contents that are continued on subsequent lines must be indented, otherwise: FAILED: exception thrown from config = OCIO::Config::CreateFromStream(is): "Error: Loading the OCIO profile failed. yaml-cpp: error at line 25, column 1: plain value cannot start with flow indicator character" --- tests/cpu/Config_tests.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/cpu/Config_tests.cpp b/tests/cpu/Config_tests.cpp index 28d5e430b..22a619beb 100644 --- a/tests/cpu/Config_tests.cpp +++ b/tests/cpu/Config_tests.cpp @@ -6492,7 +6492,7 @@ OCIO_ADD_TEST(Config, inactive_color_space_read_write) std::string configStr; configStr += InactiveCSConfigStart; // Test a multi-line list. - configStr += "inactive_colorspaces: [cs1\t\n \n, \ncs2]\n"; + configStr += "inactive_colorspaces: [cs1\t\n \n , \n cs2]\n"; configStr += InactiveCSConfigEnd; std::istringstream is;