From bceac46d390e716ad37ef4e62d7a6d45ee0117c9 Mon Sep 17 00:00:00 2001 From: Richard Date: Mon, 29 Jun 2015 22:23:04 -0600 Subject: [PATCH] Fixed: Remove absolute path from exported file --- test/unit/utColladaExportLight.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unit/utColladaExportLight.cpp b/test/unit/utColladaExportLight.cpp index 30f3df36f..bac35954c 100644 --- a/test/unit/utColladaExportLight.cpp +++ b/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);