Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAras Pranckevicius <aras@nesnausk.org>2022-04-04 14:58:45 +0300
committerAras Pranckevicius <aras@nesnausk.org>2022-04-04 14:58:45 +0300
commita56f53ad5615afc4b9ed74907de21376c14b3775 (patch)
tree98487d67b708c00a7fb2b086cdba9fbfdfd173f9 /source/blender/io/wavefront_obj/tests
parent277fa2f441f4ab2c00e7f329ba34a3466956647c (diff)
OBJ: fix mac/linux tests and compile warnings in the new obj importer
Related to D13958
Diffstat (limited to 'source/blender/io/wavefront_obj/tests')
-rw-r--r--source/blender/io/wavefront_obj/tests/obj_importer_tests.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/io/wavefront_obj/tests/obj_importer_tests.cc b/source/blender/io/wavefront_obj/tests/obj_importer_tests.cc
index ddcfd6176f0..2a0e2aaf510 100644
--- a/source/blender/io/wavefront_obj/tests/obj_importer_tests.cc
+++ b/source/blender/io/wavefront_obj/tests/obj_importer_tests.cc
@@ -338,8 +338,8 @@ TEST_F(obj_importer_test, import_invalid_syntax)
3,
float3(1, 2, 3),
float3(10, 11, 12),
- float3(0.4082f, -0.8165f, 0.4082f),
- float2(0, 0)},
+ float3(0, 1, 0),
+ float2(0.5f, 0.25f)},
};
import_and_check("invalid_syntax.obj", expect, std::size(expect), 0);
}