From cee3b423fcc0a7c252ad721520f82ee6ceadc9e8 Mon Sep 17 00:00:00 2001 From: Holger Rapp Date: Sun, 20 Feb 2011 21:18:45 +0100 Subject: [PATCH] Fix some 'No such mapping' warnings which led to random test failures on my system --- test.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test.py b/test.py index 39f7428..da03f6b 100755 --- a/test.py +++ b/test.py @@ -1775,8 +1775,7 @@ class _AnonBase(_VimTest): self.send(":inoremap " + EA + ' =UltiSnips_Anon(' + self.args + ')\n') def _options_off(self): - self.send(":iunmap " + EA + ' =UltiSnips_Anon(' - + self.args + ')\n') + self.send(":iunmap " + EA + '\n') class Anon_NoTrigger_Simple(_AnonBase): args = '"simple expand"'