Skip to content

Commit

Permalink
Fix account name
Browse files Browse the repository at this point in the history
  • Loading branch information
johlju committed May 9, 2024
1 parent ae720d5 commit 6498e98
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,15 @@ Describe 'Install-SqlDscServer' -Tag @('Integration_SQL2016', 'Integration_SQL20
Context 'When installing database engine default instance' {
It 'Should run the command without throwing' {
{
# TODO: Add additional properties, for example service accounts, to the splatting parameters.
# Set splatting parameters for Install-SqlDscServer
$installSqlDscServerParameters = @{
Install = $true
AcceptLicensingTerms = $true
InstanceName = 'MSSQLSERVER'
Features = 'SQLENGINE'
SqlSysAdminAccounts = @(
('{0}\MyAdminAccount' -f (Get-ComputerName))
('{0}\SqlAdmin' -f (Get-ComputerName))
)
MediaPath = $env:IsoDrivePath # Set by the prerequisites tests
Verbose = $true
Expand Down

0 comments on commit 6498e98

Please sign in to comment.