Skip to content

Commit

Permalink
#30
Browse files Browse the repository at this point in the history
  • Loading branch information
PrzemyslawKlys committed Sep 9, 2019
1 parent 28863fc commit f212fb6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Private/Import-TestimoConfiguration.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
if ($Configuration -is [System.Collections.IDictionary]) {
$Option = 'Hashtable'
$LoadedConfiguration = $Configuration
} elseif ($Object -is [string]) {
if (Test-Path -LiteralPath $Object) {
} elseif ($Configuration -is [string]) {
if (Test-Path -LiteralPath $Configuration) {
$Option = 'File'
$FileContent = Get-Content -LiteralPath $Configuration
} else {
Expand Down

0 comments on commit f212fb6

Please sign in to comment.