Skip to content
This repository has been archived by the owner on Oct 31, 2023. It is now read-only.

Commit

Permalink
Fix unix only unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
maaktweluit committed Sep 11, 2019
1 parent 9302310 commit fb08a1c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tests/golem/resource/base/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,9 @@ def setUp(self):
async_=False)

def tearDown(self):
self.client_1.quit()
self.client_2.quit()
with mock.patch('golem.task.taskserver.TaskServer.quit'):
self.client_1.quit()
self.client_2.quit()

LogTestCase.tearDown(self)
TempDirFixture.tearDown(self)
Expand Down

0 comments on commit fb08a1c

Please sign in to comment.