Got the sql and file system unit tests running

Made the ApplicationUserDataPath a static
This commit is contained in:
Lars Brubaker 2015-08-21 11:04:27 -07:00
parent bbc9a7afff
commit d1a26eb2a1
12 changed files with 71 additions and 26 deletions

View file

@ -401,7 +401,7 @@ namespace MatterHackers.MatterControl
private static string ThumbnailPath()
{
string applicationUserDataPath = ApplicationDataStorage.Instance.ApplicationUserDataPath;
string applicationUserDataPath = ApplicationDataStorage.ApplicationUserDataPath;
string folderToSaveThumbnailsTo = Path.Combine(applicationUserDataPath, "data", "temp", "thumbnails");
return folderToSaveThumbnailsTo;
}