Skip to content

Commit

Permalink
COM-3671: fix broken tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ulysseferreira committed Mar 19, 2024
1 parent d24dd22 commit 4378b5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integration/companies.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ describe('COMPANIES ROUTES - PUT /companies/:id', () => {
});

it('should update company from holding', async () => {
const payload = { name: 'Alenvi Alenvi', rhConfig: { phoneFeeAmount: 70 }, apeCode: '8110Z' };
const payload = { rhConfig: { phoneFeeAmount: 70 }, apeCode: '8110Z' };
const response = await app.inject({
method: 'PUT',
url: `/companies/${companyWithoutSubscription._id}`,
Expand Down

0 comments on commit 4378b5b

Please sign in to comment.