Skip to content

Commit

Permalink
fix(gitlab): fix undef var and comma dangle
Browse files Browse the repository at this point in the history
now travis should work in peace
  • Loading branch information
dsevillamartin committed Jul 16, 2017
1 parent b9871c0 commit fc0b30b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/Gitlab/Constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@ exports.Endpoints = {
toString: () => base,
projects: `${base}/projects`,
};
}
},
};
2 changes: 1 addition & 1 deletion lib/Gitlab/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ class Gitlab {
Log.warn(`GitLab | searchGroups: returning sample issue`);
return Promise.resolve([]);
} else {
return this._request(Constants.Endpoints.Group(org), {
return this._request(Constants.Endpoints.groups, {
search: query,
});
}
Expand Down

0 comments on commit fc0b30b

Please sign in to comment.