Skip to content

Commit

Permalink
test/integration/api: de-duplicate test name (#1160)
Browse files Browse the repository at this point in the history
There were previously two adjacent tests both called:

> should return the xlsx file originally provided
  • Loading branch information
alxndrsn authored Jul 2, 2024
1 parent cc0ac3d commit 084cbe1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/integration/api/forms/forms.js
Original file line number Diff line number Diff line change
Expand Up @@ -738,7 +738,7 @@ describe('api: /projects/:id/forms (create, read, update)', () => {
.expect(304)));
}));

it('should return the xlsx file originally provided', testService((service) => {
it('should return the xlsx file originally provided for a draft', testService((service) => {
const input = readFileSync(appRoot + '/test/data/simple.xlsx');
return service.login('alice', (asAlice) =>
asAlice.post('/v1/projects/1/forms?publish=true')
Expand Down

0 comments on commit 084cbe1

Please sign in to comment.