trivial: modify spelling error of test

Change-Id: I79d71d4596b3fd5ec625d5c2b749e8a9a0f7264e
This commit is contained in:
lvxianguo 2018-10-31 19:32:13 +08:00
parent 70ec78815d
commit ad6445c3bf
1 changed files with 3 additions and 3 deletions

View File

@ -769,7 +769,7 @@ results:
return_value=yaml.safe_load(FK_VAL_RESP.text))
def test__get_deckhand_validation_errors(mock_client):
"""
Tets the functionality of processing a response from deckhand
Test the functionality of processing a response from deckhand
"""
helper = ConfigdocsHelper(CTX)
assert len(helper._get_deckhand_validation_errors(5)) == 2
@ -798,7 +798,7 @@ results:
return_value=yaml.safe_load(FK_VAL_RESP_EMPTY.text))
def test__get_deckhand_validations_empty_errors(mock_client):
"""
Tets the functionality of processing a response from deckhand
Test the functionality of processing a response from deckhand
"""
helper = ConfigdocsHelper(CTX)
assert len(helper._get_deckhand_validation_errors(5)) == 0
@ -820,7 +820,7 @@ results: []
return_value=yaml.safe_load(FK_VAL_RESP_EMPTY.text))
def test__get_deckhand_validation_errors_empty_results(mock_client):
"""
Tets the functionality of processing a response from deckhand
Test the functionality of processing a response from deckhand
"""
helper = ConfigdocsHelper(CTX)
assert len(helper._get_deckhand_validation_errors(5)) == 0