Skip to content

Commit

Permalink
fix(config): Fix prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
aav7fl committed Jul 1, 2024
1 parent 31b45ff commit c90b788
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions lib/modules/platform/gitlab/index.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2262,15 +2262,13 @@ describe('modules/platform/gitlab/index', () => {
gitLabIgnoreApprovals: true,
},
}),
).toEqual(
{
"id": 1,
"iid": 12345,
"number": 12345,
"sourceBranch": "some-branch",
"title": "some title",
}
);
).toEqual({
id: 1,
iid: 12345,
number: 12345,
sourceBranch: 'some-branch',
title: 'some title',
});
});

it('will modify a rule of type any_approvers, if such a rule exists', async () => {
Expand Down

0 comments on commit c90b788

Please sign in to comment.