File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -108,7 +108,7 @@ Describe 'Test-SqlDscIsLoginEnabled' -Tag 'Public' {
108108 $mockLoginObject.IsDisabled = $false
109109
110110 Mock - CommandName Get-SqlDscLogin - MockWith {
111- return @ ( $mockLoginObject )
111+ return $mockLoginObject
112112 }
113113 }
114114
@@ -129,7 +129,7 @@ Describe 'Test-SqlDscIsLoginEnabled' -Tag 'Public' {
129129 $mockLoginObject.IsDisabled = $true
130130
131131 Mock - CommandName Get-SqlDscLogin - MockWith {
132- return @ ( $mockLoginObject )
132+ return $mockLoginObject
133133 }
134134 }
135135
@@ -150,7 +150,7 @@ Describe 'Test-SqlDscIsLoginEnabled' -Tag 'Public' {
150150 $mockLoginObject.IsDisabled = $false
151151
152152 Mock - CommandName Get-SqlDscLogin - MockWith {
153- return @ ( $mockLoginObject )
153+ return $mockLoginObject
154154 }
155155 }
156156
You can’t perform that action at this time.
0 commit comments