Skip to content

Commit cd79e93

Browse files
committed
Fix hardcoded database name in Test-SqlDscDatabaseProperty tests for consistency
1 parent 9abef83 commit cd79e93

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/Integration/Commands/Test-SqlDscDatabaseProperty.Integration.Tests.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ Describe 'Test-SqlDscDatabaseProperty' -Tag @('Integration_SQL2017', 'Integratio
352352

353353
$testParameters = @{
354354
ServerObject = $script:serverObject
355-
Name = $script:persistentTestDatabase
355+
Name = 'SqlDscIntegrationTestDatabase_Persistent'
356356
Collation = $actualCollation
357357
RecoveryModel = $actualRecoveryModel
358358
Owner = $actualOwner
@@ -382,7 +382,7 @@ Describe 'Test-SqlDscDatabaseProperty' -Tag @('Integration_SQL2017', 'Integratio
382382

383383
$testParameters = @{
384384
ServerObject = $script:serverObject
385-
Name = $script:persistentTestDatabase
385+
Name = 'SqlDscIntegrationTestDatabase_Persistent'
386386
Collation = $actualCollation
387387
RecoveryModel = $wrongRecoveryModel
388388
Owner = $actualOwner

0 commit comments

Comments
 (0)