[Pkg-owncloud-commits] [owncloud] 56/215: Update encryption.php
David Prévot
taffit at moszumanska.debian.org
Tue May 5 01:01:22 UTC 2015
This is an automated email from the git hooks/post-receive script.
taffit pushed a commit to branch stable8
in repository owncloud.
commit 27ea23ea6b88ee73ec2826212336d20e9c209029
Author: jknockaert <jasper at knockaert.nl>
Date: Tue Apr 21 18:09:21 2015 +0200
Update encryption.php
---
tests/lib/files/stream/encryption.php | 28 ++++++++++++++--------------
1 file changed, 14 insertions(+), 14 deletions(-)
diff --git a/tests/lib/files/stream/encryption.php b/tests/lib/files/stream/encryption.php
index fdd710e..36e668a 100644
--- a/tests/lib/files/stream/encryption.php
+++ b/tests/lib/files/stream/encryption.php
@@ -167,20 +167,20 @@ class Encryption extends \Test\TestCase {
// fclose($stream);
// }
- public function testRewind() {
- $fileName = tempnam("/tmp", "FOO");
- $stream = $this->getStream($fileName, 'w+', 0);
- $this->assertEquals(6, fwrite($stream, 'foobar'));
- $this->assertEquals(TRUE, rewind($stream));
- $this->assertEquals('foobar', fread($stream, 100));
- $this->assertEquals(TRUE, rewind($stream));
- $this->assertEquals(3, fwrite($stream, 'bar'));
- fclose($stream);
-
- $stream = $this->getStream($fileName, 'r', 6);
- $this->assertEquals('barbar', fread($stream, 100));
- fclose($stream);
- }
+// public function testRewind() {
+// $fileName = tempnam("/tmp", "FOO");
+// $stream = $this->getStream($fileName, 'w+', 0);
+// $this->assertEquals(6, fwrite($stream, 'foobar'));
+// $this->assertEquals(TRUE, rewind($stream));
+// $this->assertEquals('foobar', fread($stream, 100));
+// $this->assertEquals(TRUE, rewind($stream));
+// $this->assertEquals(3, fwrite($stream, 'bar'));
+// fclose($stream);
+//
+// $stream = $this->getStream($fileName, 'r', 6);
+// $this->assertEquals('barbar', fread($stream, 100));
+// fclose($stream);
+// }
public function testSeek() {
$fileName = tempnam("/tmp", "FOO");
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-owncloud/owncloud.git
More information about the Pkg-owncloud-commits
mailing list