Skip to content

Commit

Permalink
test(ufs-router): remove expect for header
Browse files Browse the repository at this point in the history
  • Loading branch information
Felipe Parreira committed Sep 11, 2020
1 parent 31af57f commit 2c4eeb0
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions tests/end-to-end/api/01-users.js
Expand Up @@ -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);
Expand All @@ -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);
Expand Down

0 comments on commit 2c4eeb0

Please sign in to comment.