diff options
Diffstat (limited to 'tests/features/ipctest.py')
-rwxr-xr-x | tests/features/ipctest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/features/ipctest.py b/tests/features/ipctest.py index a8de3936b27..4417493a0ae 100755 --- a/tests/features/ipctest.py +++ b/tests/features/ipctest.py @@ -23,7 +23,7 @@ if __name__ == "__main__": import sys try: - res = apply(do_ipc,sys.argv[1:3]) + res = do_ipc(*sys.argv[1:3]) print(res) except: print("IPC failed (volume not started?)") |