From c2350fd4eea27fcb0a4fbc6e121ac62c0c5de4e7 Mon Sep 17 00:00:00 2001 From: Max Schaefer <xiemaisi@gmail.com> Date: Fri, 10 Jul 2015 09:19:25 +0100 Subject: [PATCH] [vim tests] Remove a few useless expressions --- test/vim_test.js | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/test/vim_test.js b/test/vim_test.js index e9b7bec06..320a67b99 100644 --- a/test/vim_test.js +++ b/test/vim_test.js @@ -390,7 +390,6 @@ testVim('%_skip_string', function(cm, vim, helpers) { helpers.doKeys(['%']); helpers.assertCursorAt(0,0); }, {value:'(")")'}); -(')') testVim('%_skip_comment', function(cm, vim, helpers) { cm.setCursor(0,0); helpers.doKeys(['%']); @@ -3128,8 +3127,7 @@ testVim('zt==z<CR>', function(cm, vim, helpers){ }); var moveTillCharacterSandbox = - 'The quick brown fox \n' - 'jumped over the lazy dog.' + 'The quick brown fox \n'; testVim('moveTillCharacter', function(cm, vim, helpers){ cm.setCursor(0, 0); // Search for the 'q'. @@ -3176,9 +3174,6 @@ testVim('searchForPipe', function(cm, vim, helpers){ var scrollMotionSandbox = - '\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n' - '\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n' - '\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n' '\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n'; testVim('scrollMotion', function(cm, vim, helpers){ var prevCursor, prevScrollInfo; -- GitLab