Fix exit code asserted by kill method of python runner

This commit is contained in:
Tyler Neely 2022-06-15 13:42:53 +02:00
parent 7eebf9a7d7
commit 9fcbd45896

View File

@ -112,4 +112,4 @@ class MemgraphInstanceRunner:
return
self.proc_mg.kill()
code = self.proc_mg.wait()
assert code == 9, "The killed Memgraph process exited with non-nine!"
assert code == -9, "The killed Memgraph process exited with non-nine!"