From 2c4eeb03bec8e0909290db02a9cd2e7fd07ba0a6 Mon Sep 17 00:00:00 2001 From: Felipe Parreira Date: Fri, 11 Sep 2020 14:46:46 -0300 Subject: [PATCH] test(ufs-router): remove expect for header --- tests/end-to-end/api/01-users.js | 2 -- 1 file changed, 2 deletions(-) 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);