Skip to content

Commit 61de9c7

Browse files
committed
tests
1 parent bccbcc7 commit 61de9c7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/WorkflowCore.Tests.SqlServer/DockerSetup.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ public class SqlDockerSetup : DockerSetup
1818

1919
public override string ImageName => "microsoft/mssql-server-linux";
2020
public override int InternalPort => 1433;
21+
public override TimeSpan TimeOut => TimeSpan.FromSeconds(60);
2122

2223
public const string SqlPassword = "I@mJustT3st1ing";
2324

@@ -33,7 +34,7 @@ public override bool TestReady()
3334
{
3435
try
3536
{
36-
var client = new SqlConnection($"Server=127.0.0.1,{ExternalPort};Database=workflowcore-tests;User Id=sa;Password={SqlPassword};");
37+
var client = new SqlConnection($"Server=127.0.0.1,{ExternalPort};Database=master;User Id=sa;Password={SqlPassword};");
3738
client.Open();
3839
client.Close();
3940
return true;

0 commit comments

Comments
 (0)