🎨 Replace unnecessary fat arrow

This commit is contained in:
Thomas Johansen 2015-10-06 23:32:29 +02:00 committed by Nathan Sobo
parent 669eff5d20
commit d878092794

View File

@ -1770,7 +1770,7 @@ describe "TextEditor", ->
editor2 = null
waitsForPromise ->
atom.workspace.getActivePane().splitRight()
atom.workspace.open(editor.getPath()).then (o) => editor2 = o
atom.workspace.open(editor.getPath()).then (o) -> editor2 = o
runs ->
expect(editor2.getText()).toBe(editor.getText())