Unittests: fix uppercase typo in export path for ply export test.
authorKim Kulling <kim.kulling@googlemail.com>
Fri, 9 Jun 2017 19:57:41 +0000 (21:57 +0200)
committerKim Kulling <kim.kulling@googlemail.com>
Fri, 9 Jun 2017 19:57:41 +0000 (21:57 +0200)
test/unit/utPLYImportExport.cpp

index 5ab8095..1ef8b68 100644 (file)
@@ -60,7 +60,7 @@ public:
         Exporter exporter;
         const aiScene *scene = importer.ReadFile(ASSIMP_TEST_MODELS_DIR "/PLY/cube.ply", 0);
         EXPECT_NE(nullptr, scene);
-        EXPECT_EQ(aiReturn_SUCCESS, exporter.Export(scene, "ply", ASSIMP_TEST_MODELS_DIR "/ply/cube_test.ply"));
+        EXPECT_EQ(aiReturn_SUCCESS, exporter.Export(scene, "ply", ASSIMP_TEST_MODELS_DIR "/PLY/cube_test.ply"));
 
         return true;
     }