From d47e8fc58371729bfcca57ae77b16e98d87e548d Mon Sep 17 00:00:00 2001 From: Corey Johnson Date: Fri, 11 Apr 2014 09:45:54 -0700 Subject: [PATCH] Fix indentation error --- spec/editor-view-spec.coffee | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/spec/editor-view-spec.coffee b/spec/editor-view-spec.coffee index 6f8f610df..615c17d68 100644 --- a/spec/editor-view-spec.coffee +++ b/spec/editor-view-spec.coffee @@ -432,9 +432,9 @@ describe "EditorView", -> editorView.setFontFamily('sans-serif') it "positions the cursor to the clicked row and column", -> - {top, left} = editorView.pixelOffsetForScreenPosition([3, 30]) - editorView.renderedLines.trigger mousedownEvent(pageX: left, pageY: top) - expect(editor.getCursorScreenPosition()).toEqual [3, 30] + {top, left} = editorView.pixelOffsetForScreenPosition([3, 30]) + editorView.renderedLines.trigger mousedownEvent(pageX: left, pageY: top) + expect(editor.getCursorScreenPosition()).toEqual [3, 30] describe "double-click", -> it "selects the word under the cursor, and expands the selection wordwise in either direction on a subsequent shift-click", ->