tests: fix accidentally broken tests.

This commit is contained in:
Marcin Kuzminski 2016-11-28 01:34:43 +01:00
parent 068dc61d56
commit efebab78b9

View file

@ -50,6 +50,9 @@ class TestGetServerInfo(object):
expected['storage_inodes'] = resp['result']['storage_inodes']
expected['server'] = resp['result']['server']
expected['index_storage'] = resp['result']['index_storage']
expected['storage'] = resp['result']['storage']
assert_ok(id_, expected, given=response.body)
def test_api_get_server_info_ip(self):
@ -66,6 +69,9 @@ class TestGetServerInfo(object):
expected['storage_inodes'] = resp['result']['storage_inodes']
expected['server'] = resp['result']['server']
expected['index_storage'] = resp['result']['index_storage']
expected['storage'] = resp['result']['storage']
assert_ok(id_, expected, given=response.body)
def test_api_get_server_info_data_for_search_index_build(self):