Skip to content

Commit 7821dac

Browse files
author
AJubrey
committed
[CHANGED] using the firstPath variable
[REMOVED] extra parentheses
1 parent 581bcd3 commit 7821dac

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Assets/FbxExporters/Editor/UnitTests/FbxExportSettingsTest.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -231,12 +231,12 @@ public void TestGetDCCOptions()
231231
try
232232
{
233233
//Create any files we need within the folders
234-
FileInfo firstExe = new FileInfo(testFolder + firstSubFolder + executableName);
234+
FileInfo firstExe = new FileInfo(firstPath.FullName + executableName);
235235
using (FileStream s = firstExe.Create()) { }
236236

237237
//Add the paths which will be copied to DCCOptionPaths
238238
List<string> testPathList = new List<string>();
239-
testPathList.Add((firstPath.FullName + executableName)); //this path is valid!
239+
testPathList.Add(firstPath.FullName + executableName); //this path is valid!
240240
testPathList.Add(secondPath.FullName + executableName);
241241
testPathList.Add(null);
242242
testPathList.Add("cookies/milk/foo/bar");

0 commit comments

Comments
 (0)