Skip to content

Commit

Permalink
remove stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
ivankatliarchuk committed Oct 6, 2022
1 parent 2326dd0 commit 6211e75
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion source/platforms/GitLab.ts
Expand Up @@ -36,7 +36,7 @@ class GitLab implements Platform {
const changes = await this.api.getMergeRequestChanges()
const commits = await this.api.getMergeRequestCommits()

const mappedCommits: GitCommit[] = commits.map((commit) => {
const mappedCommits: GitCommit[] = commits.map(commit => {
return {
sha: commit.id,
author: {
Expand Down
2 changes: 1 addition & 1 deletion source/platforms/gitlab/_tests/_gitlab_api.test.ts
Expand Up @@ -196,7 +196,7 @@ describe("GitLab API", () => {
expect(result.title).toEqual(titleToUpdate)
})

describe("merge request info labels", () => {
describe("mergerequest (add|remove)labels", () => {
let nockDone: { nockDone: () => void }

afterAll(async () => {
Expand Down

0 comments on commit 6211e75

Please sign in to comment.