Skip to content

Commit e640d75

Browse files
committed
fix export settings test
1 parent d44e76b commit e640d75

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
@@ -28,8 +28,8 @@ static FbxExportSettingsTest ()
2828
| System.Reflection.BindingFlags.Instance;
2929
var t = typeof (ExportSettings);
3030

31-
s_SavePathField = t.GetField ("convertToModelSavePath", privates);
32-
Assert.IsNotNull (s_SavePathField, "convertToModelSavePath");
31+
s_SavePathField = t.GetField ("maxStoredSavePaths", privates);
32+
Assert.IsNotNull (s_SavePathField, "maxStoredSavePaths");
3333

3434
// static fields can't be found through inheritance with GetField.
3535
// if we change the inheritance diagram, we have to change t.BaseType here.

0 commit comments

Comments
 (0)