fix another linter error

This commit is contained in:
Ben Ogle 2014-09-05 12:44:56 -07:00
parent 557562d8c8
commit db84b7952c

View File

@ -149,13 +149,13 @@ describe "Editor", ->
describe "path", ->
it "notifies ::onDidChangePath observers when the underlying buffer path changes", ->
observed = []
editor.onDidChangePath (filePath) -> observed.push(filePath)
observed = []
editor.onDidChangePath (filePath) -> observed.push(filePath)
buffer.setPath('/foo/bar/baz.txt')
buffer.setPath(undefined)
buffer.setPath('/foo/bar/baz.txt')
buffer.setPath(undefined)
expect(observed).toEqual ['/foo/bar/baz.txt', undefined]
expect(observed).toEqual ['/foo/bar/baz.txt', undefined]
describe "cursor", ->
describe ".getLastCursor()", ->