Skip to content

Commit b458e78

Browse files
Zuulopenstack-gerrit
authored andcommitted
Merge "tests: Remove unused flag"
2 parents 519596d + 900fad5 commit b458e78

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • openstackclient/tests/functional

openstackclient/tests/functional/base.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@
2424
LOG = logging.getLogger(__name__)
2525

2626

27-
def execute(cmd, fail_ok=False, merge_stderr=False):
27+
def execute(cmd, *, fail_ok=False):
2828
"""Executes specified command for the given action."""
2929
LOG.debug('Executing: %s', cmd)
3030
cmdlist = shlex.split(cmd)
3131
stdout = subprocess.PIPE
32-
stderr = subprocess.STDOUT if merge_stderr else subprocess.PIPE
32+
stderr = subprocess.PIPE
3333

3434
proc = subprocess.Popen(cmdlist, stdout=stdout, stderr=stderr)
3535

0 commit comments

Comments
 (0)