Skip to content

Commit 9097203

Browse files
author
Troy Schmidt
committed
Needed to update to the localDB instance used by VS2017
1 parent de74248 commit 9097203

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/Serilog.Sinks.MSSqlServer.Tests/DatabaseFixture.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ WITH ROLLBACK IMMEDIATE
2727
DROP DATABASE [{Database}]
2828
";
2929

30-
public static string MasterConnectionString => @"Data Source=(LocalDb)\v11.0;Initial Catalog=Master;Integrated Security=True";
31-
public static string LogEventsConnectionString => $@"Data Source=(LocalDb)\v11.0;Initial Catalog={Database};Integrated Security=True";
30+
public static string MasterConnectionString => @"Data Source=(localdb)\MSSQLLocalDB;Initial Catalog=Master;Integrated Security=True";
31+
public static string LogEventsConnectionString => $@"Data Source=(localdb)\MSSQLLocalDB;Initial Catalog={Database};Integrated Security=True";
3232

3333
public class FileName
3434
{

0 commit comments

Comments
 (0)