diff options
Diffstat (limited to 'core')
-rw-r--r-- | core/tests/Albums_Controller_Test.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/core/tests/Albums_Controller_Test.php b/core/tests/Albums_Controller_Test.php index 57a5bf64..b43ae01b 100644 --- a/core/tests/Albums_Controller_Test.php +++ b/core/tests/Albums_Controller_Test.php @@ -31,7 +31,10 @@ class Albums_Controller_Test extends Unit_Test_Case { $_POST["name"] = "new name"; $_POST["title"] = "new title"; $_POST["description"] = "new description"; + $_POST["column"] = "id"; + $_POST["direction"] = "ASC"; $_POST["csrf"] = access::csrf_token(); + $_POST["_method"] = "put"; access::allow(group::everybody(), "edit", $root); ob_start(); |