From 2e7f481e6bcc9b9d2aea986c86af123f1ec265c0 Mon Sep 17 00:00:00 2001
From: Bjoern Schiessle <schiessle@owncloud.com>
Date: Fri, 4 Oct 2013 14:32:15 +0200
Subject: [PATCH] update tests

---
 apps/files_sharing/tests/api.php | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/apps/files_sharing/tests/api.php b/apps/files_sharing/tests/api.php
index 7cbfe03b49..c55c186f08 100644
--- a/apps/files_sharing/tests/api.php
+++ b/apps/files_sharing/tests/api.php
@@ -268,8 +268,8 @@ class Test_Files_Sharing_Api extends \PHPUnit_Framework_TestCase {
 		// share was successful?
 		$this->assertTrue(is_string($result));
 
-		$_GET['file'] = $this->folder;
-		$_GET['subfiles'] = 'yes';
+		$_GET['path'] = $this->folder;
+		$_GET['subfiles'] = 'true';
 
 		$result = Share\Api::getAllShares(array());
 
@@ -434,7 +434,7 @@ class Test_Files_Sharing_Api extends \PHPUnit_Framework_TestCase {
 		$params = array();
 		$params['id'] = $linkShare['id'];
 		$params['_put'] = array();
-		$params['_put']['publicUpload'] = 'yes';
+		$params['_put']['publicUpload'] = 'true';
 
 		$result = Share\Api::updateShare($params);
 
-- 
GitLab