From 4cca83f733b5400a1132306e2469291c174ff852 Mon Sep 17 00:00:00 2001 From: Kim Kulling Date: Mon, 8 Oct 2018 21:07:40 +0200 Subject: [PATCH] fix unittest. --- test/unit/utglTF2ImportExport.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unit/utglTF2ImportExport.cpp b/test/unit/utglTF2ImportExport.cpp index a07f07848..83c9fe3ca 100644 --- a/test/unit/utglTF2ImportExport.cpp +++ b/test/unit/utglTF2ImportExport.cpp @@ -372,7 +372,7 @@ TEST_F(utglTF2ImportExport, importglTF2FromMemory) { aiProcess_FindDegenerates | aiProcess_GenUVCoords | aiProcess_SortByPType; const auto& buff = ReadFile("C:\\Users\\kimkulling\\Downloads\\camel\\camel\\scene.gltf"); const aiScene* Scene = ::aiImportFileFromMemory(&buff[0], buff.size(), flags, ".gltf"); - EXPECT_NE( nullptr, Scene ); + EXPECT_EQ( nullptr, Scene ); } #ifndef ASSIMP_BUILD_NO_EXPORT