From fb5b3f0473df85ac11436129bbb663992eafddf2 Mon Sep 17 00:00:00 2001 From: joshaber Date: Fri, 15 Jan 2016 13:19:28 -0500 Subject: [PATCH] :fire: some lint. --- spec/git-repository-async-spec.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/spec/git-repository-async-spec.js b/spec/git-repository-async-spec.js index ca287d86f..17c3a4eb2 100644 --- a/spec/git-repository-async-spec.js +++ b/spec/git-repository-async-spec.js @@ -778,7 +778,6 @@ describe('GitRepositoryAsync', () => { if (process.platform === 'win32') { return } - console.log('workingDirectory in spec', workingDirectory); const linkDirectory = path.join(temp.mkdirSync('atom-working-dir-symlink'), 'link') fs.symlinkSync(workingDirectory, linkDirectory) @@ -789,11 +788,10 @@ describe('GitRepositoryAsync', () => { expect(await linkedRepo.relativizeToWorkingDirectory('test2/test3')).toBe('test2/test3') }) - it ('handles case insensitive filesystems', async () => { + it('handles case insensitive filesystems', async () => { repo.isCaseInsensitive = true expect(await repo.relativizeToWorkingDirectory(path.join(workingDirectory.toUpperCase(), 'a.txt'))).toBe('a.txt') expect(await repo.relativizeToWorkingDirectory(path.join(workingDirectory.toUpperCase(), 'a/b/c.txt'))).toBe('a/b/c.txt') - }) }) })