Skip to content

Commit

Permalink
fix for issue 109
Browse files Browse the repository at this point in the history
  • Loading branch information
unkcpz authored and muhrin committed Oct 17, 2019
1 parent e13e46b commit 79a3087
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/rmq/test_process_comms.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ def test_play(self):
self.assertTrue(proc.pause())

# Send a play message
play_future = self.process_controller.pause_process(proc.pid)
play_future = self.process_controller.play_process(proc.pid)
# Allow the process to respond to the request
result = yield play_future

Expand All @@ -187,8 +187,8 @@ def test_play(self):
def test_kill(self):
proc = test_utils.WaitForSignalProcess(communicator=self.communicator)

# Send a play message
kill_future = self.process_controller.kill_process(proc.pid)
# Send a kill message
kill_future = yield self.process_controller.kill_process(proc.pid)
# Allow the process to respond to the request
result = yield kill_future

Expand Down

0 comments on commit 79a3087

Please sign in to comment.