Skip to content

Commit

Permalink
fix useInviteToken
Browse files Browse the repository at this point in the history
  • Loading branch information
ggazzo committed Jun 7, 2022
1 parent 3482cbe commit 8f69518
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/meteor/tests/end-to-end/api/23-invites.js
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ describe('Invites', function () {
.expect(400)
.expect((res) => {
expect(res.body).to.have.property('success', false);
expect(res.body).to.have.property('errorType', 'error-invalid-token');
expect(res.body).to.have.property('errorType', 'invalid-params');
})
.end(done);
});
Expand Down

0 comments on commit 8f69518

Please sign in to comment.