diff --git a/tests/end-to-end/api/01-users.js b/tests/end-to-end/api/01-users.js index f066d9ef1c0..7d18cca3153 100644 --- a/tests/end-to-end/api/01-users.js +++ b/tests/end-to-end/api/01-users.js @@ -344,7 +344,6 @@ describe('[Users]', function() { username: 'ufs', password: '1234', }) - .expect('Content-Type', 'application/json') .expect(200) .expect((res) => { expect(res.body).to.have.property('success', true); @@ -355,7 +354,6 @@ describe('[Users]', function() { .query({ username: 'ufs', }) - .expect('Content-Type', 'application/json') .expect(200) .expect((res) => { expect(res.body).to.have.property('success', true);