Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
RahulGautamSingh committed Nov 24, 2024
1 parent 306a8a9 commit 8cfd9c6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/modules/platform/gitlab/index.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3208,7 +3208,7 @@ describe('modules/platform/gitlab/index', () => {
number: 1,
prTitle: 'title',
prBody: 'body',
state: 'opened',
state: 'open',
addLabels: ['new_label'],
removeLabels: ['old_label'],
}),
Expand Down
2 changes: 1 addition & 1 deletion lib/modules/platform/gitlab/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -818,7 +818,7 @@ export async function updatePr({
)
).body;

const updatedPr: Pr = massagePr(prInfo(updatedPrInfo));
const updatedPr: Pr = prInfo(updatedPrInfo);

if (config.prList) {
const existingIndex = config.prList.findIndex(
Expand Down

0 comments on commit 8cfd9c6

Please sign in to comment.