浏览代码

fixed x3d importer test

René Martin 4 年之前
父节点
当前提交
65173df9d9
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      test/unit/utX3DImportExport.cpp

+ 1 - 1
test/unit/utX3DImportExport.cpp

@@ -52,7 +52,7 @@ public:
     virtual bool importerTest() {
         Assimp::Importer importer;
         const aiScene *scene = importer.ReadFile(ASSIMP_TEST_MODELS_DIR "/X3D/ComputerKeyboard.x3d", aiProcess_ValidateDataStructure);
-        return nullptr == scene;
+        return nullptr != scene;
     }
 };