Updated Branches: refs/heads/1.2.x d380ea7b7 -> 268fb7ab0
Fix another assertion in content_negotiation.js Commit 351fe793a9c99c62f1b62ad71425dac4971d3bd8 broke the test assertion. Project: http://git-wip-us.apache.org/repos/asf/couchdb/repo Commit: http://git-wip-us.apache.org/repos/asf/couchdb/commit/268fb7ab Tree: http://git-wip-us.apache.org/repos/asf/couchdb/tree/268fb7ab Diff: http://git-wip-us.apache.org/repos/asf/couchdb/diff/268fb7ab Branch: refs/heads/1.2.x Commit: 268fb7ab03c94cf1c5589bd1b203964be135bca1 Parents: d380ea7 Author: Filipe David Borba Manana <[email protected]> Authored: Sat Jan 7 12:20:06 2012 +0000 Committer: Filipe David Borba Manana <[email protected]> Committed: Sat Jan 7 12:20:06 2012 +0000 ---------------------------------------------------------------------- share/www/script/test/content_negotiation.js | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/couchdb/blob/268fb7ab/share/www/script/test/content_negotiation.js ---------------------------------------------------------------------- diff --git a/share/www/script/test/content_negotiation.js b/share/www/script/test/content_negotiation.js index 2e75369..0478f9d 100644 --- a/share/www/script/test/content_negotiation.js +++ b/share/www/script/test/content_negotiation.js @@ -21,7 +21,7 @@ couchTests.content_negotiation = function(debug) { var req = CouchDB.newXhr(); req.open("GET", "/test_suite_db/", false); req.send(""); - TEquals("text/plain;charset=utf-8", req.getResponseHeader("Content-Type")); + TEquals("text/plain; charset=utf-8", req.getResponseHeader("Content-Type")); // make sure JSON responses end in a newline var text = req.responseText;
