From f7878a02dddab762b862274bd8c601decb36fa47 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Sat, 22 Dec 2012 22:13:51 -0800 Subject: [PATCH] Add no selection rule to spec selector --- spec/app/editor-spec.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/app/editor-spec.coffee b/spec/app/editor-spec.coffee index f7c99be4f..8d61188e2 100644 --- a/spec/app/editor-spec.coffee +++ b/spec/app/editor-spec.coffee @@ -1766,7 +1766,7 @@ describe "Editor", -> it "doesn't highlight the background of the gutter", -> editor.getSelection().setBufferRange(new Range([0,0],[2,0])) expect(editor.getSelection().isSingleScreenLine()).toBe false - expect(editor.find('.line-number.cursor-line-no-selection').length).toBe 0 + expect(editor.find('.line-number.cursor-line.cursor-line-no-selection').length).toBe 0 it "when a newline is deleted with backspace, the line number of the new cursor position is highlighted", -> editor.setCursorScreenPosition([1,0])