Skip to content

Commit a643e82

Browse files
committed
Update integration tests for Get-SqlDscRSConfigurationSetting to assert IsInitialized as false for various configurations
1 parent 305d7db commit a643e82

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/Integration/Commands/Get-SqlDscRSConfigurationSetting.Integration.Tests.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ Describe 'Get-SqlDscRSConfigurationSetting' {
7171
#[System.Version] $result.Version | Should -BeGreaterOrEqual ([System.Version] '15.0.1103.41')
7272
$result.PathName | Should -Be 'C:\Program Files\SSRS\SSRS\ReportServer\rsreportserver.config'
7373
$result.InstallationID | Should -Not -BeNullOrEmpty
74-
$result.IsInitialized | Should -BeTrue
74+
$result.IsInitialized | Should -BeFalse
7575
$result.IsSharePointIntegrated | Should -BeFalse
7676
$result.IsWebServiceEnabled | Should -BeTrue
7777
$result.IsWindowsServiceEnabled | Should -BeTrue
@@ -100,7 +100,7 @@ Describe 'Get-SqlDscRSConfigurationSetting' {
100100
#[System.Version] $result.Version | Should -BeGreaterOrEqual ([System.Version] '16.0.1116.38')
101101
$result.PathName | Should -Be 'C:\Program Files\SSRS\SSRS\ReportServer\rsreportserver.config'
102102
$result.InstallationID | Should -Not -BeNullOrEmpty
103-
$result.IsInitialized | Should -BeTrue
103+
$result.IsInitialized | Should -BeFalse
104104
$result.IsSharePointIntegrated | Should -BeFalse
105105
$result.IsWebServiceEnabled | Should -BeTrue
106106
$result.IsWindowsServiceEnabled | Should -BeTrue
@@ -130,7 +130,7 @@ Describe 'Get-SqlDscRSConfigurationSetting' {
130130
#[System.Version] $result.Version | Should -BeGreaterOrEqual ([System.Version] '15.0.1117.98')
131131
$result.PathName | Should -Be 'C:\Program Files\PBIRS\PBIRS\ReportServer\rsreportserver.config'
132132
$result.InstallationID | Should -Not -BeNullOrEmpty
133-
$result.IsInitialized | Should -BeTrue
133+
$result.IsInitialized | Should -BeFalse
134134
$result.IsSharePointIntegrated | Should -BeFalse
135135
$result.IsWebServiceEnabled | Should -BeTrue
136136
$result.IsWindowsServiceEnabled | Should -BeTrue

0 commit comments

Comments
 (0)