File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
test/WorkflowCore.Tests.SqlServer Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ public class SqlDockerSetup : DockerSetup
18
18
19
19
public override string ImageName => "microsoft/mssql-server-linux" ;
20
20
public override int InternalPort => 1433 ;
21
+ public override TimeSpan TimeOut => TimeSpan . FromSeconds ( 60 ) ;
21
22
22
23
public const string SqlPassword = "I@mJustT3st1ing" ;
23
24
@@ -33,7 +34,7 @@ public override bool TestReady()
33
34
{
34
35
try
35
36
{
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 } ;") ;
37
38
client . Open ( ) ;
38
39
client . Close ( ) ;
39
40
return true ;
You can’t perform that action at this time.
0 commit comments