Skip to content

Commit

Permalink
* enable edit gist comment test
Browse files Browse the repository at this point in the history
  • Loading branch information
JayGray committed Sep 26, 2014
1 parent d244511 commit 34596fc
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions test/specs/gists-spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@
);
});

xit('should successfully execute PATCH /gists/:gist_id/comments/:id (editComment)', function (done) {
it('should successfully execute PATCH /gists/:gist_id/comments/:id (editComment)', function (done) {
github.gists.createComment(
{
gist_id: '1e2f2c21e78106c2cd14',
Expand All @@ -436,7 +436,6 @@
},
function (err, res) {
expect(err).toBeNull();
expect(res.owner.login).toBe('jwebertest');
expect(res.id).toBe(id);
expect(res.body).toBe('This comment has been edited.');

Expand Down

0 comments on commit 34596fc

Please sign in to comment.