Skip to content

Commit adf1543

Browse files
committed
Fix build
Signed-off-by: Nathan Hart <nhart12@gmail.com>
1 parent 25b7544 commit adf1543

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/Serilog.Sinks.MSSqlServer.Tests/Sinks/MSSqlServer/Platform/SqlConnectionFactoryTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public SqlConnectionFactoryTests()
2121
[Fact]
2222
public void IntializeThrowsIfSqlConnectionStringBuilderWrapperIsNull()
2323
{
24-
Assert.Throws<ArgumentNullException>(() => new SqlConnectionFactory(null));
24+
Assert.Throws<ArgumentNullException>(() => new SqlConnectionFactory((ISqlConnectionStringBuilderWrapper)null));
2525
}
2626

2727
[Fact]

0 commit comments

Comments
 (0)