Skip to content

Commit

Permalink
Fixed path to sqlcmd
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthew Casperson committed Jul 24, 2024
1 parent 8ce08b0 commit 0876988
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/octopus_container_test_framework.go
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ func (o *OctopusContainerTest) setupDatabase(ctx context.Context, network string
"ACCEPT_EULA": "Y",
"SA_PASSWORD": "Password01!",
},
WaitingFor: wait.ForExec([]string{"/opt/mssql-tools/bin/sqlcmd", "-U", "sa", "-P", "Password01!", "-Q", "select 1"}).WithExitCodeMatcher(
WaitingFor: wait.ForExec([]string{"/opt/mssql-tools18/bin/sqlcmd", "-C", "-U", "sa", "-P", "Password01!", "-Q", "select 1"}).WithExitCodeMatcher(
func(exitCode int) bool {
return exitCode == 0
}),
Expand Down

0 comments on commit 0876988

Please sign in to comment.