From bc8497c6258869e76cc6813c1feaa0226ab6266c Mon Sep 17 00:00:00 2001 From: Edvin Hultberg Date: Thu, 27 Jul 2017 16:27:14 +0200 Subject: [PATCH] Attempt to fix specs --- spec/ex-commands-spec.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/ex-commands-spec.coffee b/spec/ex-commands-spec.coffee index 4e3d839..d0c8744 100644 --- a/spec/ex-commands-spec.coffee +++ b/spec/ex-commands-spec.coffee @@ -764,7 +764,7 @@ describe "the commands", -> test = (escapeChar, escaped) -> openEx() - submitNormalModeInputText(":substitute/,/\\#{escapeChar}/g") + submitNormalModeInputText(":substitute/,/\#{escapeChar}/g") expect(editor.getText()).toEqual("abc#{escaped}def#{escaped}ghi") it "replaces with a tab", -> test('t', '\t')