From 15879844d75d53b539be8bed06105fc3f7f68ab3 Mon Sep 17 00:00:00 2001 From: Martin Gerhardy Date: Sat, 21 May 2022 17:57:22 +0200 Subject: [PATCH] VOXELFORMAT: skip the color tests here qb stores the values as rgba, and thus we use a different palette to perform a conversion this ends in a result that is not directly comparable. We would have to quantize a palette from the rgba values of a qubicle file and would have to use that one --- src/modules/voxelformat/tests/ConvertTest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/voxelformat/tests/ConvertTest.cpp b/src/modules/voxelformat/tests/ConvertTest.cpp index c05c253e4..2a1eeb93b 100644 --- a/src/modules/voxelformat/tests/ConvertTest.cpp +++ b/src/modules/voxelformat/tests/ConvertTest.cpp @@ -106,7 +106,7 @@ TEST_F(ConvertTest, testQbToVXM) { TEST_F(ConvertTest, testVXMToQb) { VXMFormat src; QBFormat target; - testLoadSaveAndLoad("test.vxm", src, "test.qb", target, true, true, 0.0018); + testLoadSaveAndLoad("test.vxm", src, "test.qb", target, false, true); } TEST_F(ConvertTest, testQbToCub) {