Explorar el Código

Merge pull request #593 from LegalizeAdulthood/fix-tests

Fixed: Remove absolute path from exported file
Kim Kulling hace 10 años
padre
commit
2dc332cc84
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      test/unit/utColladaExportLight.cpp

+ 1 - 1
test/unit/utColladaExportLight.cpp

@@ -49,7 +49,7 @@ TEST_F(ColladaExportLight, testExportLight)
 
 
     EXPECT_EQ(AI_SUCCESS,ex->Export(pTest,"collada",file));
-    EXPECT_EQ(AI_SUCCESS,ex->Export(pTest,"collada","/home/wise/lightsExp.dae"));
+    EXPECT_EQ(AI_SUCCESS,ex->Export(pTest,"collada","lightsExp.dae"));
 
     const aiScene* imported = im->ReadFile(file,0);