]> source.dussan.org Git - nextcloud-server.git/commitdiff
Fix sharing test case
authorMichael Gapczynski <mtgap@owncloud.com>
Tue, 28 Aug 2012 18:00:46 +0000 (14:00 -0400)
committerMichael Gapczynski <mtgap@owncloud.com>
Tue, 28 Aug 2012 18:00:46 +0000 (14:00 -0400)
tests/lib/share/share.php

index 22de5691036849b960e6bdbf5efab3c2b552a6f3..18ca5031ca4cc62de48fea024690bff884c43ccc 100644 (file)
@@ -360,13 +360,12 @@ class Test_Share extends UnitTestCase {
                
                // Attempt user specific target conflict
                OC_User::setUserId($this->user3);
-               $this->assertTrue(OCP\Share::shareItem('test', 'test.txt', OCP\Share::SHARE_TYPE_GROUP, $this->group1, OCP\Share::PERMISSION_READ | OCP\Share::PERMISSION_SHARE));
+               $this->assertTrue(OCP\Share::shareItem('test', 'share.txt', OCP\Share::SHARE_TYPE_GROUP, $this->group1, OCP\Share::PERMISSION_READ | OCP\Share::PERMISSION_SHARE));
                OC_User::setUserId($this->user2);
                $to_test = OCP\Share::getItemsSharedWith('test', Test_Share_Backend::FORMAT_TARGET);
                $this->assertEqual(count($to_test), 2);
                $this->assertTrue(in_array('test.txt', $to_test));
                $this->assertTrue(in_array('test1.txt', $to_test));
-               $this->dump($to_test, "array of shared items in test");
                //$this->assertEqual(OCP\Share::getItemsSharedWith('test', Test_Share_Backend::FORMAT_TARGET), array('test.txt', 'test1.txt'));
                
 //             // Valid reshare TODO Broken