Skip to content

Commit

Permalink
Fix a broken test.
Browse files Browse the repository at this point in the history
  • Loading branch information
XhmikosR committed Sep 6, 2018
1 parent 03fa06e commit 6f96a55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/connect_test.js
Expand Up @@ -145,7 +145,7 @@ exports.connect = {
test.equal(res.statusCode, 200, 'should return 200');
test.equal(res.headers['content-type'], 'text/plain; charset=UTF-8', 'should return plaintext content type');
get('http://localhost:8004/connect-examples.md', function(res, body) {
test.equal(res.headers['content-type'], 'text/x-markdown; charset=UTF-8', 'should return markdown content type');
test.equal(res.headers['content-type'], 'text/markdown; charset=UTF-8', 'should return markdown content type');
test.equal(res.statusCode, 200, 'should return 200');
test.done();
});
Expand Down

0 comments on commit 6f96a55

Please sign in to comment.