Skip to content

Commit

Permalink
fix unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
tomlm committed Nov 25, 2024
1 parent 38a3906 commit 98ec862
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Tests/Consolonia.Core.Tests/StorageTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ public async Task TestWellKnownFolder()

folder = await storageProvider.TryGetWellKnownFolderAsync(WellKnownFolder.Downloads);
if (folder != null)
Assert.AreEqual(Environment.GetFolderPath(Environment.SpecialFolder.UserProfile),
Assert.AreEqual(Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.UserProfile), "Downloads"),
folder.Path.LocalPath);

folder = await storageProvider.TryGetWellKnownFolderAsync(WellKnownFolder.Desktop);
Expand Down

0 comments on commit 98ec862

Please sign in to comment.