Skip to content

Commit 82fb0bc

Browse files
committed
adjusting case of table properties
1 parent 9e369a9 commit 82fb0bc

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tests/oracle/Install-DBOSqlScript.Tests.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ Describe "Install-DBOSqlScript Oracle integration tests" -Tag $commandName, Inte
237237
'd' | Should BeIn $testResults.NAME
238238
#Verifying order
239239
$r1 = Invoke-DBOQuery @connParams -Query "SELECT scriptname FROM $logtable ORDER BY SCHEMAVERSIONID"
240-
$r1.scriptname | Should Be (Get-Item $v2scripts, $v1scripts).Name
240+
$r1.SCRIPTNAME | Should Be (Get-Item $v2scripts, $v1scripts).Name
241241
}
242242
}
243243
# Context "testing timeouts" {

tests/oracle/Register-DBOPackage.Tests.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ Describe "Register-DBOPackage Oracle integration tests" -Tag $commandName, Integ
116116

117117
#Verifying SchemaVersions table
118118
$testResults = Invoke-DBOQuery @connParams -Query "SELECT * FROM $logTable ORDER BY SCHEMAVERSIONID"
119-
$testResults.scriptname | Should Be $v1Journal
119+
$testResults.SCRIPTNAME | Should Be $v1Journal
120120
}
121121
It "should register version 1.0 + 2.0 without creating any objects" {
122122
$before = Invoke-DBOQuery @connParams -InputFile $verificationScript
@@ -146,7 +146,7 @@ Describe "Register-DBOPackage Oracle integration tests" -Tag $commandName, Integ
146146

147147
#Verifying SchemaVersions table
148148
$testResults = Invoke-DBOQuery @connParams -Query "SELECT * FROM $logTable ORDER BY SCHEMAVERSIONID"
149-
$testResults.scriptname | Should Be (@($v1Journal) + @($v2Journal))
149+
$testResults.SCRIPTNAME | Should Be (@($v1Journal) + @($v2Journal))
150150
}
151151
}
152152
Context "$commandName whatif tests" {

0 commit comments

Comments
 (0)