Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
wmertens committed May 8, 2020
1 parent c1c663c commit b03dced
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/spec.git-api.js
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ describe('git-api', () => {
return common.post(req, '/discardchanges', { path: testDir, file: testFile });
});

it('modifying a test file should work', () => {
it('modifying a test file should work part deux', () => {
return common.post(req, '/testing/changefile', { file: path.join(testDir, testFile) });
});

Expand Down Expand Up @@ -283,7 +283,7 @@ describe('git-api', () => {
return common.post(req, '/testing/createfile', { file: path.join(testDir, testFile3) });
});

it('status should list the new file', () => {
it('status should list the new file once again', () => {
return common.get(req, '/status', { path: testDir }).then((res) => {
expect(Object.keys(res.files).length).to.be(1);
expect(res.files[testFile3]).to.eql({
Expand Down

0 comments on commit b03dced

Please sign in to comment.