Skip to content

Commit

Permalink
Add forgotten mock to the test_ha.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Kukushkin committed Mar 15, 2016
1 parent 0e0c8ed commit 8a7d2b5
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tests/test_ha.py
Expand Up @@ -77,6 +77,7 @@ def run_async(func, args=()):
@patch.object(Postgresql, 'query', Mock())
@patch.object(Postgresql, 'checkpoint', Mock())
@patch.object(etcd.Client, 'write', etcd_write)
@patch.object(etcd.Client, 'read', etcd_read)
@patch.object(etcd.Client, 'delete', Mock(side_effect=etcd.EtcdException))
@patch('subprocess.call', Mock(return_value=0))
class TestHa(unittest.TestCase):
Expand Down

0 comments on commit 8a7d2b5

Please sign in to comment.