From fedb4197f8a1ad2e40bd9de9779159af6488eefa Mon Sep 17 00:00:00 2001 From: Ben Gotow Date: Fri, 11 Dec 2015 12:16:55 -0800 Subject: [PATCH] fix(editablelist): Remove spec warning --- spec/components/editable-list-spec.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/components/editable-list-spec.jsx b/spec/components/editable-list-spec.jsx index 72ab472c9..4d91e1fb5 100644 --- a/spec/components/editable-list-spec.jsx +++ b/spec/components/editable-list-spec.jsx @@ -48,7 +48,7 @@ describe('EditableList', ()=> { }); it('does not enters editing mode when item is React Element', ()=> { - const item =
; + const item =
; const list = makeList(['1', item]); spyOn(list, 'setState'); list._onItemEdit({}, item, 1);