Skip to content

Commit

Permalink
some fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
sils committed May 16, 2015
1 parent a10eb63 commit e15a93e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions coalib/tests/processes/SectionExecutorTest.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,13 +90,13 @@ def _get_running_processes(self, processes):
class MessageQueueingInteractor(Interactor):
def __init__(self):
Interactor.__init__(self, None)
self.queue = queue.Queue
self.queue = queue.Queue()

def print_results(self, *args):
self.queue.put(args)

def get(self):
return queue.get()
return self.queue.get()


class SectionExecutorInitTest(unittest.TestCase):
Expand Down

0 comments on commit e15a93e

Please sign in to comment.