From commits-return-7759-apmail-couchdb-commits-archive=couchdb.apache.org@couchdb.apache.org Sat Jan 7 12:22:12 2012 Return-Path: X-Original-To: apmail-couchdb-commits-archive@www.apache.org Delivered-To: apmail-couchdb-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 8FEBF9921 for ; Sat, 7 Jan 2012 12:22:11 +0000 (UTC) Received: (qmail 31157 invoked by uid 500); 7 Jan 2012 12:22:09 -0000 Delivered-To: apmail-couchdb-commits-archive@couchdb.apache.org Received: (qmail 30721 invoked by uid 500); 7 Jan 2012 12:21:35 -0000 Mailing-List: contact commits-help@couchdb.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@couchdb.apache.org Delivered-To: mailing list commits@couchdb.apache.org Received: (qmail 30674 invoked by uid 99); 7 Jan 2012 12:21:30 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 07 Jan 2012 12:21:30 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.114] (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 07 Jan 2012 12:21:27 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id BFADA5347B; Sat, 7 Jan 2012 12:21:06 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: fdmanana@apache.org To: commits@couchdb.apache.org X-Mailer: ASF-Git Admin Mailer Subject: git commit: Fix another assertion in content_negotiation.js Message-Id: <20120107122106.BFADA5347B@tyr.zones.apache.org> Date: Sat, 7 Jan 2012 12:21:06 +0000 (UTC) X-Virus-Checked: Checked by ClamAV on apache.org 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 Authored: Sat Jan 7 12:20:06 2012 +0000 Committer: Filipe David Borba Manana 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;