Fix typo in tests name

This commit is contained in:
micbou 2018-02-12 02:01:47 +01:00
parent ce1764cf40
commit 8ab3f73b4d
No known key found for this signature in database
GPG Key ID: C7E8FD1F3BDA1E05

View File

@ -896,7 +896,7 @@ def YouCompleteMe_OnPeriodicTick_ServerNotReady_test( ycm, *args ):
return_value = True ) return_value = True )
@patch( 'ycm.client.base_request._ValidateResponseObject', return_value = True ) @patch( 'ycm.client.base_request._ValidateResponseObject', return_value = True )
@patch( 'ycm.client.base_request.BaseRequest.PostDataToHandlerAsync' ) @patch( 'ycm.client.base_request.BaseRequest.PostDataToHandlerAsync' )
def YouCompelteMe_OnPeriodicTick_DontRetry_test( ycm, def YouCompleteMe_OnPeriodicTick_DontRetry_test( ycm,
post_data_to_handler_async, post_data_to_handler_async,
*args ): *args ):
@ -947,7 +947,7 @@ def YouCompelteMe_OnPeriodicTick_DontRetry_test( ycm,
return_value = True ) return_value = True )
@patch( 'ycm.client.base_request._ValidateResponseObject', return_value = True ) @patch( 'ycm.client.base_request._ValidateResponseObject', return_value = True )
@patch( 'ycm.client.base_request.BaseRequest.PostDataToHandlerAsync' ) @patch( 'ycm.client.base_request.BaseRequest.PostDataToHandlerAsync' )
def YouCompelteMe_OnPeriodicTick_Exception_test( ycm, def YouCompleteMe_OnPeriodicTick_Exception_test( ycm,
post_data_to_handler_async, post_data_to_handler_async,
*args ): *args ):
@ -986,7 +986,7 @@ def YouCompelteMe_OnPeriodicTick_Exception_test( ycm,
@patch( 'ycm.client.base_request._ValidateResponseObject', return_value = True ) @patch( 'ycm.client.base_request._ValidateResponseObject', return_value = True )
@patch( 'ycm.client.base_request.BaseRequest.PostDataToHandlerAsync' ) @patch( 'ycm.client.base_request.BaseRequest.PostDataToHandlerAsync' )
@patch( 'ycm.client.messages_request._HandlePollResponse' ) @patch( 'ycm.client.messages_request._HandlePollResponse' )
def YouCompelteMe_OnPeriodicTick_ValidResponse_test( ycm, def YouCompleteMe_OnPeriodicTick_ValidResponse_test( ycm,
handle_poll_response, handle_poll_response,
post_data_to_handler_async, post_data_to_handler_async,
*args ): *args ):