protocol: fix request headers in urlRequestFetchJob

This commit is contained in:
Robo 2015-07-27 02:51:41 +05:30
parent 7ceca9f426
commit b0e73532de
2 changed files with 2 additions and 4 deletions

View file

@ -81,6 +81,7 @@ describe 'protocol module', ->
it 'returns RequestHttpJob should send respone', (done) ->
server = http.createServer (req, res) ->
assert.notEqual req.headers.accept, ''
res.writeHead(200, {'Content-Type': 'text/plain'})
res.end('hello')
server.close()