diff options
author | James Lal <james@lightsofapollo.com> | 2012-07-08 12:44:49 -0700 |
---|---|---|
committer | James Lal <james@lightsofapollo.com> | 2012-07-08 12:44:49 -0700 |
commit | 055988cbf2d8609963369494304b6b2a70e16f6a (patch) | |
tree | a4842f77986cdafa81e50d80f51a936093a588da /test/caldav | |
parent | ee8dac6ecd2927d6ea1930ae478ff65766b446d9 (diff) | |
download | jsCalDAV-055988cbf2d8609963369494304b6b2a70e16f6a.tar.gz |
Fixed bug in resourcetype logic in Request.Resources. Refactored scripts/connect to use Resources
Diffstat (limited to 'test/caldav')
-rw-r--r-- | test/caldav/request/resources_test.js | 2 |
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]) }; } |