fix another unittest warning.

pull/3012/head
Kim Kulling 2020-03-21 20:10:40 +01:00
parent 2ee948eb84
commit 14aea3f1a4
1 changed files with 1 additions and 2 deletions

View File

@ -190,7 +190,7 @@ protected:
return expScene;
}
virtual bool importerTest() {
bool importerTest() override {
::Assimp::Importer importer;
const aiScene *scene = importer.ReadFile(ASSIMP_TEST_MODELS_DIR "/OBJ/spider.obj", aiProcess_ValidateDataStructure);
return nullptr != scene;
@ -477,4 +477,3 @@ TEST_F(utObjImportExport, import_with_line_continuations) {
EXPECT_NEAR(vertices[2].y, 0.5f, threshold);
EXPECT_NEAR(vertices[2].z, -0.5f, threshold);
}