aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorJames Lal <james@lightsofapollo.com>2012-07-08 12:44:49 -0700
committerJames Lal <james@lightsofapollo.com>2012-07-08 12:44:49 -0700
commit055988cbf2d8609963369494304b6b2a70e16f6a (patch)
treea4842f77986cdafa81e50d80f51a936093a588da /test
parentee8dac6ecd2927d6ea1930ae478ff65766b446d9 (diff)
downloadjsCalDAV-055988cbf2d8609963369494304b6b2a70e16f6a.tar.gz
Fixed bug in resourcetype logic in Request.Resources. Refactored scripts/connect to use Resources
Diffstat (limited to 'test')
-rw-r--r--test/caldav/request/resources_test.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/caldav/request/resources_test.js b/test/caldav/request/resources_test.js
index c8a8675..ecea34a 100644
--- a/test/caldav/request/resources_test.js
+++ b/test/caldav/request/resources_test.js
@@ -71,7 +71,7 @@ suite('caldav/resource_finder', function() {
function resource(name, type) {
return {
name: status(name),
- resourcetype: [type]
+ resourcetype: status([type])
};
}