Skip to content

Commit

Permalink
fix(test): fix test for http2 with null socket
Browse files Browse the repository at this point in the history
  • Loading branch information
wesleytodd committed Sep 2, 2024
1 parent db834a9 commit 2afa91a
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -616,11 +616,8 @@ var topDescribe = function (type, createServer) {
})
}))
.get('/')
.end(function () {
assert.strictEqual(this.res.statusCode, 200)
assert.strictEqual(this.res.text, 'ok')
done()
})
.expect(200)
.end(done)
})
})
}
Expand Down

0 comments on commit 2afa91a

Please sign in to comment.