Auto merge of #2910 - micbou:fix-typo-tests, r=puremourning

[READY] Fix typo in tests name

`:%s/YouCompelteMe/YouCompleteMe`.

<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/valloric/youcompleteme/2910)
<!-- Reviewable:end -->
This commit is contained in:
zzbot 2018-02-12 13:06:31 -08:00 committed by GitHub
commit 02f117035e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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 ):