summaryrefslogtreecommitdiff
path: root/modules/tag/tests
diff options
context:
space:
mode:
authorTim Almdal <tnalmdal@shaw.ca>2009-12-27 08:32:12 -0800
committerTim Almdal <tnalmdal@shaw.ca>2009-12-27 08:32:12 -0800
commitbccb6fc02146fb07cd1b472a90092e78e2259e91 (patch)
tree78dcb1717e020ebc65fec8a4ba452ab1193d2a27 /modules/tag/tests
parent07e83718a0cd1bcef1f0a0546ffcb7cb6a1735ae (diff)
Clean up validation the check for duplicate names or slugs, finish converting the rest API to Kohana 2.4
Diffstat (limited to 'modules/tag/tests')
-rw-r--r--modules/tag/tests/Tag_Rest_Helper_Test.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/tag/tests/Tag_Rest_Helper_Test.php b/modules/tag/tests/Tag_Rest_Helper_Test.php
index 1c550366..6b1c9a33 100644
--- a/modules/tag/tests/Tag_Rest_Helper_Test.php
+++ b/modules/tag/tests/Tag_Rest_Helper_Test.php
@@ -210,11 +210,11 @@ class Tag_Rest_Helper_Test extends Unit_Test_Case {
$this->assert_equal(json_encode(array("status" => "OK")), tag_rest::delete($request));
$request = (object)array("arguments" => array("T1,P1"));
- $this->assert_equal(json_encode(array("status" => "OK", "resources" => array())),
+ $this->assert_equal(json_encode(array("status" => "OK")),
tag_rest::get($request));
}
- public function tag_rest_delete_tag_from_item_test() {
+ public function tag_rest_delete_tagc_from_item_test() {
$request = (object)array("arguments" => array("T1,P1"),
$this->_photo->relative_url());