From bfdca8869f1ad41f9bffa9d35856d08e47abe74f Mon Sep 17 00:00:00 2001 From: hjk <qtc-committer@nokia.com> Date: Thu, 29 Apr 2010 14:17:10 +0200 Subject: [PATCH] fakevim: fix autotest after recent changes to input handling --- tests/auto/fakevim/main.cpp | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/tests/auto/fakevim/main.cpp b/tests/auto/fakevim/main.cpp index b6f665545d2..8a491169183 100644 --- a/tests/auto/fakevim/main.cpp +++ b/tests/auto/fakevim/main.cpp @@ -148,11 +148,6 @@ const QStringList tst_FakeVim::l = tst_FakeVim::lines.split('\n'); const QString tst_FakeVim::escape = QChar(27); -QString control(int c) -{ - return QChar(c + 256); -} - tst_FakeVim::tst_FakeVim(bool usePlainTextEdit) { @@ -616,7 +611,7 @@ void tst_FakeVim::command_i() // small insertion at start of document check("ix" + escape, "@x" + lines); check("u", "@" + lines); - check(control('r'), "@x" + lines); + checkEx("redo", "@x" + lines); check("u", "@" + lines); // small insertion at start of document -- GitLab