Skip to content

Commit 3fb5511

Browse files
committed
Renaming the rest of the test files
1 parent f75e51a commit 3fb5511

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

tests/mysql/Install-DBOSqlScript.Tests.ps1 renamed to tests/mysql/Install-DBOScript.Tests.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ if (!$Batch) {
1313
}
1414
else {
1515
# Is a part of a batch, output some eye-catching happiness
16-
Write-Host "Running $commandName tests" -ForegroundColor Cyan
16+
Write-Host "Running MySQL $commandName tests" -ForegroundColor Cyan
1717
}
1818

1919
. "$testRoot\constants.ps1"
@@ -208,7 +208,7 @@ Describe "Install-DBOScript MySQL integration tests" -Tag $commandName, Integrat
208208
BeforeAll {
209209
$file = "$workFolder\delay.sql"
210210
"DO SLEEP(5); SELECT 'Successful!'" | Out-File $file
211-
$timeoutError = if ($PSVersionTable.PSVersion.Major -eq 6) { 'Fatal error encountered during command execution' } else { 'Timeout expired.'}
211+
$timeoutError = if ($PSVersionTable.PSVersion.Major -eq 6) { 'Fatal error encountered during command execution' } else { 'Timeout expired.' }
212212
}
213213
BeforeEach {
214214
$null = Invoke-DBOQuery -Type MySQL -SqlInstance $script:mysqlInstance -Silent -Credential $script:mysqlCredential -Database $newDbName -InputFile $cleanupScript

tests/postgresql/Install-DBOSqlScript.Tests.ps1 renamed to tests/postgresql/Install-DBOScript.Tests.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ if (!$Batch) {
1313
}
1414
else {
1515
# Is a part of a batch, output some eye-catching happiness
16-
Write-Host "Running $commandName tests" -ForegroundColor Cyan
16+
Write-Host "Running PostgreSQL $commandName tests" -ForegroundColor Cyan
1717
}
1818

1919
. "$testRoot\constants.ps1"

0 commit comments

Comments
 (0)