We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91ab835 commit 2faf70dCopy full SHA for 2faf70d
test/FubarDev.WebDavServer.Tests/FileSystem/SimpleFsTests.cs
@@ -4,6 +4,7 @@
4
5
using System;
6
using System.IO;
7
+using System.Linq;
8
using System.Threading;
9
using System.Threading.Tasks;
10
@@ -68,7 +69,7 @@ public async Task TwoEmptyDirectories()
68
69
var test2 = await root.CreateCollectionAsync("test2", ct).ConfigureAwait(false);
70
var rootChildren = await root.GetChildrenAsync(ct).ConfigureAwait(false);
71
Assert.Collection(
- rootChildren,
72
+ rootChildren.OrderBy(n => n.Name),
73
child =>
74
{
75
Assert.NotNull(child);
0 commit comments