Skip to content

Commit 13aba2d

Browse files
committed
Update test to assert empty instead of null
1 parent 49666fa commit 13aba2d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/UmbracoFileSystemProviders.Azure.Tests/AzureBlobFileSystemTestsBase.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,7 @@ public void TestGetFilesInvalidPath()
365365
IEnumerable<string> actual = provider.GetFiles("/somethingmissing", "*.jpg");
366366

367367
// Assert
368-
Assert.IsNull(actual);
368+
Assert.IsEmpty(actual);
369369
}
370370

371371
/// <summary>

0 commit comments

Comments
 (0)