Lower case

This commit is contained in:
joshaber 2016-04-26 09:23:54 -04:00
parent f86a15e5fc
commit ff43d917be

View File

@ -885,8 +885,8 @@ describe('GitRepositoryAsync', () => {
})
it('returns the origin URL', async () => {
const URL = await repo.getOriginURL()
expect(URL).toBe('git@github.com:atom/some-repo-i-guess.git')
const url = await repo.getOriginURL()
expect(url).toBe('git@github.com:atom/some-repo-i-guess.git')
})
})
})