adjust concept tests after changing subprocess model

This commit is contained in:
erik-krogh
2023-02-02 19:36:46 +01:00
parent ef44cb86c2
commit 848b24cfe4

View File

@@ -140,7 +140,7 @@ subprocess.Popen(args) # $getCommand=args
args = "<progname>"
use_shell = False
exe = "executable"
subprocess.Popen(args, shell=use_shell, executable=exe) # $getCommand=exe SPURIOUS: getCommand=args
subprocess.Popen(args, shell=use_shell, executable=exe) # $getCommand=exe
################################################################################