Turning off the omnisharp server after test

This commit is contained in:
Strahinja Val Markovic 2013-10-26 12:30:49 -07:00
parent 63534e1a6f
commit dda1a83c09

View File

@ -88,6 +88,12 @@ def GetCompletions_CsCompleter_Works_test():
assert_that( results, has_items( CompletionEntryMatcher( 'CursorLeft' ),
CompletionEntryMatcher( 'CursorSize' ) ) )
# We need to turn off the CS server so that it doesn't stick around
app.post_json( '/run_completer_command',
BuildRequest( completer_target = 'filetype_default',
command_arguments = ['StopServer'],
filetype = 'cs' ) )
@with_setup( Setup )
def GetCompletions_ClangCompleter_WorksWithExplicitFlags_test():