Skip to content

Commit 4914a27

Browse files
author
Warren Buckley
committed
Update tests so that now all pass again
1 parent b2030ce commit 4914a27

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/UmbracoFileSystemProviders.Azure.Tests/AzureBlobFileSystemTestsBase.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ public void TestGetDirectories()
294294
IEnumerable<string> actual = provider.GetDirectories("/");
295295

296296
// Assert
297-
string[] expected = { "1010/", "1011/", "1012/" };
297+
string[] expected = { "1010", "1011", "1012" };
298298
Assert.IsTrue(expected.SequenceEqual(actual));
299299
}
300300

@@ -315,7 +315,7 @@ public void TestGetDirectoriesPrefixed()
315315
IEnumerable<string> actual = provider.GetDirectories("/");
316316

317317
// Assert
318-
string[] expected = { "1010/", "1011/", "1012/" };
318+
string[] expected = { "1010", "1011", "1012" };
319319
Assert.IsTrue(expected.SequenceEqual(actual));
320320
}
321321

@@ -534,7 +534,7 @@ public void TestGetSubDirectories()
534534
IEnumerable<string> actual = provider.GetDirectories("forms");
535535

536536
// Assert
537-
string[] expected = { "forms/form_123/", "forms/form_456/" };
537+
string[] expected = { "forms/form_123", "forms/form_456" };
538538
Assert.IsTrue(expected.SequenceEqual(actual));
539539

540540
// Tidy up after test

0 commit comments

Comments
 (0)