From ff560bc3a360d23edef5615be5a464c2455ae194 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Wed, 19 Mar 2014 09:00:08 -0700 Subject: [PATCH] Update spec to not be before whitespace --- spec/editor-spec.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/editor-spec.coffee b/spec/editor-spec.coffee index 2a0eff51f..8af1b05f2 100644 --- a/spec/editor-spec.coffee +++ b/spec/editor-spec.coffee @@ -2506,7 +2506,7 @@ describe "Editor", -> describe "when the line preceding the newline does't add a level of indentation", -> it "indents the new line to the same level a as the preceding line", -> - editor.setCursorBufferPosition([5, 13]) + editor.setCursorBufferPosition([5, 14]) editor.insertText('\n') expect(editor.indentationForBufferRow(6)).toBe editor.indentationForBufferRow(5)