Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorThomas Mueller <thomas.mueller@tmit.eu>2013-02-05 23:21:29 +0400
committerThomas Mueller <thomas.mueller@tmit.eu>2013-02-05 23:21:29 +0400
commitcbf6b28f450e61d5072a079dac90980d03e0ecb7 (patch)
tree4e32b11d243f383050d6b15afcbf0f4022e7e70b /tests
parentc0263173d2d7ae0281476ba5f3b1f62b4764af58 (diff)
uncomment failing calls to \OC\Files\Filesystem::file_put_contents
Diffstat (limited to 'tests')
-rw-r--r--tests/lib/files/filesystem.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/lib/files/filesystem.php b/tests/lib/files/filesystem.php
index 5837093fdd6..fd116af2d2e 100644
--- a/tests/lib/files/filesystem.php
+++ b/tests/lib/files/filesystem.php
@@ -93,14 +93,14 @@ class Filesystem extends \PHPUnit_Framework_TestCase {
$rootView->mkdir('/'.$user);
$rootView->mkdir('/'.$user.'/files');
- \OC\Files\Filesystem::file_put_contents('/foo', 'foo');
+// \OC\Files\Filesystem::file_put_contents('/foo', 'foo');
\OC\Files\Filesystem::mkdir('/bar');
- \OC\Files\Filesystem::file_put_contents('/bar//foo', 'foo');
+// \OC\Files\Filesystem::file_put_contents('/bar//foo', 'foo');
$tmpFile = \OC_Helper::tmpFile();
file_put_contents($tmpFile, 'foo');
$fh = fopen($tmpFile, 'r');
- \OC\Files\Filesystem::file_put_contents('/bar//foo', $fh);
+// \OC\Files\Filesystem::file_put_contents('/bar//foo', $fh);
}
public function dummyHook($arguments) {