Skip to content

Commit

Permalink
#128 try to fix test ChangeFolderInSettingNoConflict
Browse files Browse the repository at this point in the history
  • Loading branch information
MonkAlex committed Apr 27, 2019
1 parent a5f326c commit fce906c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tests/Tests.Entities/MangaSetting/ChangeFolderInSetting.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public async Task ChangeFolderInSettingNoConflict()
var settingFolder = manga.Setting.Folder;
Assert.NotNull(folder);
manga.Setting.Folder += "2";
Directory.CreateDirectory(manga.Setting.Folder);
Directory.CreateDirectory(DirectoryHelpers.GetAbsoluteFolderPath(manga.Setting.Folder));
await context.Save(manga.Setting).ConfigureAwait(false);

Assert.AreNotEqual(folder, manga.Folder);
Expand Down

0 comments on commit fce906c

Please sign in to comment.