OSDN Git Service

fakevim: fix autotest after recent changes to input handling
authorhjk <qtc-committer@nokia.com>
Thu, 29 Apr 2010 12:17:10 +0000 (14:17 +0200)
committerhjk <qtc-committer@nokia.com>
Thu, 29 Apr 2010 14:11:46 +0000 (16:11 +0200)
tests/auto/fakevim/main.cpp

index b6f6655..8a49116 100644 (file)
@@ -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