From cb6798c35761c473daeb20f2d5afed713cbc760d Mon Sep 17 00:00:00 2001 From: Jon Rohan Date: Tue, 22 Jan 2013 12:40:51 -0800 Subject: [PATCH] fixing spec for ui test --- spec/app/select-list-spec.coffee | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/spec/app/select-list-spec.coffee b/spec/app/select-list-spec.coffee index b336d7be3..01ffeb445 100644 --- a/spec/app/select-list-spec.coffee +++ b/spec/app/select-list-spec.coffee @@ -95,14 +95,14 @@ describe "SelectList", -> miniEditor.trigger 'core:move-down' miniEditor.trigger 'core:move-down' - expect(list.scrollBottom()).toBe itemHeight * 2 + expect(list.scrollBottom()).toBe itemHeight * 3 miniEditor.trigger 'core:move-down' - expect(list.scrollBottom()).toBe itemHeight * 2 + expect(list.scrollBottom()).toBe itemHeight * 4 miniEditor.trigger 'core:move-up' miniEditor.trigger 'core:move-up' - expect(list.scrollBottom()).toBe itemHeight * 2 + expect(list.scrollBottom()).toBe itemHeight * 3 describe "the core:confirm event", -> describe "when there is an item selected (because the list in not empty)", ->