Skip to content

Commit 553b92b

Browse files
committed
Removed use of nullable
1 parent 9b3f00e commit 553b92b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/System.IO.Abstractions.Extensions.Tests/DisposableDirectoryTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ public class DisposableDirectoryTests
99
[Test]
1010
public void DisposableDirectory_Throws_ArgumentNullException_For_Null_IDirectoryInfo_Test()
1111
{
12-
Assert.Throws<ArgumentNullException>(() => new DisposableDirectory(null!));
12+
Assert.Throws<ArgumentNullException>(() => new DisposableDirectory(null));
1313
}
1414

1515
[Test]

0 commit comments

Comments
 (0)