From 812185f0e721bc2e500c590eb3ffe96a5cd1a518 Mon Sep 17 00:00:00 2001 From: Florian Pritz Date: Sat, 25 Apr 2015 16:53:52 +0200 Subject: API 1.3.0: Allow multipaste creation for basic access Signed-off-by: Florian Pritz --- application/tests/test_api_v1.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'application/tests/test_api_v1.php') diff --git a/application/tests/test_api_v1.php b/application/tests/test_api_v1.php index 8277f14d5..50264b6da 100644 --- a/application/tests/test_api_v1.php +++ b/application/tests/test_api_v1.php @@ -324,7 +324,7 @@ class test_api_v1 extends Test { public function test_create_multipaste_canCreate() { - $apikey = $this->createUserAndApikey(); + $apikey = $this->createUserAndApikey("basic"); $ret = $this->uploadFile($apikey, "data/tests/small-file"); $id = $ret["data"]["ids"][0]; @@ -344,7 +344,7 @@ class test_api_v1 extends Test { public function test_create_multipaste_errorOnWrongID() { - $apikey = $this->createUserAndApikey(); + $apikey = $this->createUserAndApikey("basic"); $ret = $this->uploadFile($apikey, "data/tests/small-file"); $id = $ret["data"]["ids"][0]; @@ -373,8 +373,8 @@ class test_api_v1 extends Test { public function test_create_multipaste_errorOnWrongOwner() { - $apikey = $this->createUserAndApikey(); - $apikey2 = $this->createUserAndApikey(); + $apikey = $this->createUserAndApikey("basic"); + $apikey2 = $this->createUserAndApikey("basic"); $ret = $this->uploadFile($apikey, "data/tests/small-file"); $id = $ret["data"]["ids"][0]; -- cgit v1.2.3-24-g4f1b