This commit is contained in:
Alex Gavrilov 2024-09-19 00:11:08 -07:00 коммит произвёл GitHub
Родитель 020f8e7542
Коммит c2bff15ca1
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
1 изменённых файлов: 6 добавлений и 0 удалений

Просмотреть файл

@ -437,6 +437,12 @@ public class CompletionIntegrationTests(ITestOutputHelper testOutputHelper) : Ab
Assert.NotNull(session);
if (commitChar.HasValue)
{
// Commit using the specified commit character
session.Commit(commitChar.Value, HangMitigatingCancellationToken);
// session.Commit call above commits as if the commit character was typed,
// but doesn't actually insert the character into the buffer.
// So we still need to insert the character into the buffer ourselves.
TestServices.Input.Send(commitChar.Value.ToString());
}
else