bug fix for order of operations (#552)

This commit is contained in:
Carrie Roberts
2019-09-05 09:44:52 -06:00
committed by Michael Haag
parent ac22c95011
commit dbbec18625
@@ -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