File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/UmbracoFileSystemProviders.Azure.Tests Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -294,7 +294,7 @@ public void TestGetDirectories()
294
294
IEnumerable < string > actual = provider . GetDirectories ( "/" ) ;
295
295
296
296
// Assert
297
- string [ ] expected = { "1010/ " , "1011/ " , "1012/ " } ;
297
+ string [ ] expected = { "1010" , "1011" , "1012" } ;
298
298
Assert . IsTrue ( expected . SequenceEqual ( actual ) ) ;
299
299
}
300
300
@@ -315,7 +315,7 @@ public void TestGetDirectoriesPrefixed()
315
315
IEnumerable < string > actual = provider . GetDirectories ( "/" ) ;
316
316
317
317
// Assert
318
- string [ ] expected = { "1010/ " , "1011/ " , "1012/ " } ;
318
+ string [ ] expected = { "1010" , "1011" , "1012" } ;
319
319
Assert . IsTrue ( expected . SequenceEqual ( actual ) ) ;
320
320
}
321
321
@@ -534,7 +534,7 @@ public void TestGetSubDirectories()
534
534
IEnumerable < string > actual = provider . GetDirectories ( "forms" ) ;
535
535
536
536
// Assert
537
- string [ ] expected = { "forms/form_123/ " , "forms/form_456/ " } ;
537
+ string [ ] expected = { "forms/form_123" , "forms/form_456" } ;
538
538
Assert . IsTrue ( expected . SequenceEqual ( actual ) ) ;
539
539
540
540
// Tidy up after test
You can’t perform that action at this time.
0 commit comments