From 248467894e9364b03da9287660e4ec200ae1c10d Mon Sep 17 00:00:00 2001 From: Juan Tejada Date: Fri, 4 Mar 2016 10:28:48 -0800 Subject: [PATCH] fix(lint) --- spec/stores/file-download-store-spec.coffee | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/spec/stores/file-download-store-spec.coffee b/spec/stores/file-download-store-spec.coffee index a3075e4b7..696419a72 100644 --- a/spec/stores/file-download-store-spec.coffee +++ b/spec/stores/file-download-store-spec.coffee @@ -289,11 +289,11 @@ describe "FileDownloadStore", -> expect(shell.showItemInFolder).toHaveBeenCalledWith(@userSelectedPath) it "should update the NylasEnv.savedState.lastDownloadDirectory", -> - NylasEnv.savedState.lastDownloadDirectory = null - @userSelectedPath = "/Users/imaginary/.nylas/Another Random Folder/file.jpg" - FileDownloadStore._fetchAndSave(@testfile) - advanceClock(1) - expect(NylasEnv.savedState.lastDownloadDirectory).toEqual('/Users/imaginary/.nylas/Another Random Folder') + NylasEnv.savedState.lastDownloadDirectory = null + @userSelectedPath = "/Users/imaginary/.nylas/Another Random Folder/file.jpg" + FileDownloadStore._fetchAndSave(@testfile) + advanceClock(1) + expect(NylasEnv.savedState.lastDownloadDirectory).toEqual('/Users/imaginary/.nylas/Another Random Folder') describe "file extensions", -> it "should allow the user to save the file with a different extension", ->