Switch to use test_utils.call_until_true

test.call_until_true has been deprecated since Newton on Tempest side,
and now Tempest provides test_utils.call_until_true as the stable
library method. So this patch switches to use the stable method before
removing old test.call_until_true on Tempest side.

Change-Id: Idfbd20c31246ec884ad10f9fce42816ce5f15bf3
This commit is contained in:
Ken'ichi Ohmichi 2017-02-09 10:01:18 -08:00 committed by Tomasz Trębski
parent 11435d99af
commit 4fcbb8e96c
1 changed files with 2 additions and 1 deletions

View File

@ -12,6 +12,7 @@
# License for the specific language governing permissions and limitations
# under the License.
from tempest.lib.common.utils import test_utils
from tempest import test
from monasca_log_api_tempest.tests import base
@ -38,7 +39,7 @@ class TestSingleLog(base.BaseLogsTestCase):
response, _ = self.logs_clients[version].send_single_log(data, headers)
self.assertEqual(204, response.status)
test.call_until_true(wait, _RETRY_COUNT * _RETRY_WAIT, _RETRY_WAIT)
test_utils.call_until_true(wait, _RETRY_COUNT * _RETRY_WAIT, _RETRY_WAIT)
response = self.logs_search_client.search_messages(key, headers)
self.assertEqual(1, len(response))