tests: Update tests after fix for filtering stderr
This commit is contained in:
parent
1813988074
commit
afc9e645fa
@ -712,7 +712,7 @@ class TC_20_QubesLocal(unittest.TestCase):
|
||||
p = self.app.run_service('some-vm', 'service.name')
|
||||
mock_proc.assert_called_once_with([
|
||||
qubesadmin.config.QREXEC_CLIENT,
|
||||
'-d', 'some-vm', 'DEFAULT:QUBESRPC service.name dom0'],
|
||||
'-d', 'some-vm', '-T', 'DEFAULT:QUBESRPC service.name dom0'],
|
||||
stdin=subprocess.PIPE, stdout=subprocess.PIPE,
|
||||
stderr=subprocess.PIPE)
|
||||
|
||||
@ -739,7 +739,7 @@ class TC_20_QubesLocal(unittest.TestCase):
|
||||
p = self.app.run_service('some-vm', 'service.name', user='user')
|
||||
mock_proc.assert_called_once_with([
|
||||
qubesadmin.config.QREXEC_CLIENT,
|
||||
'-d', 'some-vm',
|
||||
'-d', 'some-vm', '-T',
|
||||
'user:QUBESRPC service.name dom0'],
|
||||
stdin=subprocess.PIPE, stdout=subprocess.PIPE,
|
||||
stderr=subprocess.PIPE)
|
||||
|
Loading…
Reference in New Issue
Block a user