bug fix for order of operations (#552)
This commit is contained in:
committed by
Michael Haag
parent
ac22c95011
commit
dbbec18625
+1
-1
@@ -197,7 +197,7 @@ function Invoke-AtomicTest {
|
||||
$finalCommand = $command
|
||||
}
|
||||
|
||||
if ($null -ne $finalCommand -and $test.input_arguments.Count -gt 0) {
|
||||
if (($null -ne $finalCommand) -and ($test.input_arguments.Count -gt 0)) {
|
||||
Write-Verbose -Message 'Replacing inputArgs with user specified values or default values none provided'
|
||||
$inputArgs = Get-InputArgs $test.input_arguments
|
||||
|
||||
|
||||
Reference in New Issue
Block a user