summaryrefslogtreecommitdiff
path: root/share/www/script/couch_tests.js
diff options
context:
space:
mode:
authorDamien F. Katz <damien@apache.org>2008-05-19 19:20:19 +0000
committerDamien F. Katz <damien@apache.org>2008-05-19 19:20:19 +0000
commit55ee8c7f9188443900c52a69ae408bcf457be62a (patch)
treee98a332b9b43208f4d7494ac357c51df81866b29 /share/www/script/couch_tests.js
parent4e47fa72aedc6533bd669599e325c911b2c8c68e (diff)
Changed temp view definition to always be jsonobjects with map/reduce source as members of the object. Everywhere we used 'text/javascript' or 'application/javascript', we now just use 'javascript'
git-svn-id: https://svn.apache.org/repos/asf/incubator/couchdb/trunk@657926 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'share/www/script/couch_tests.js')
-rw-r--r--share/www/script/couch_tests.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/share/www/script/couch_tests.js b/share/www/script/couch_tests.js
index 72ed9f58..7b35cf87 100644
--- a/share/www/script/couch_tests.js
+++ b/share/www/script/couch_tests.js
@@ -436,7 +436,7 @@ var tests = {
var designDoc = {
_id:"_design/test",
- language: "text/javascript",
+ language: "javascript",
views: {
all_docs: "function(doc) { map(doc.integer, null) }",
no_docs: "function(doc) {}",