We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f49ac8e commit 9a31eddCopy full SHA for 9a31edd
1 file changed
tests/functional/Install-DBOScript.Tests.ps1
@@ -251,7 +251,9 @@ Describe "<type> Install-DBOScript functional tests" -Tag FunctionalTests -ForEa
251
$testResults = Install-DBOScript -Path $tranFailScripts -SchemaVersionTable $logTable -DeploymentMethod NoTransaction @dbConnectionParams -ErrorAction SilentlyContinue
252
$testResults.Successful | Should -Be $false
253
$testResults.SqlInstance | Should -Be $instance
254
- $testResults.Database | Should -Be $newDbName
+ if ($Type -ne 'Oracle') {
255
+ $testResults.Database | Should -Be $newDbName
256
+ }
257
$testResults.SourcePath | Should -Be (Get-ChildItem $tranFailScripts).FullName
258
$testResults.ConnectionType | Should -Be $Type
259
$testResults.Configuration.SchemaVersionTable | Should -Be $logTable
0 commit comments