diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2015-04-02 14:44:58 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-04-07 13:30:30 +0200 |
commit | 104d11ec4c5d359c54985e01c171ba1845537632 (patch) | |
tree | 2cd51e73fab86bef8a4cd86af08d615643f402aa /tests/lib/files/storage/storage.php | |
parent | d9c41b00ab4271b401ed838ccc0b19a9a0f67a76 (diff) | |
download | nextcloud-server-104d11ec4c5d359c54985e01c171ba1845537632.tar.gz nextcloud-server-104d11ec4c5d359c54985e01c171ba1845537632.zip |
Fixing encryption storage wrapper tests
Diffstat (limited to 'tests/lib/files/storage/storage.php')
-rw-r--r-- | tests/lib/files/storage/storage.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lib/files/storage/storage.php b/tests/lib/files/storage/storage.php index ad7522f1ea8..938fecb5bf3 100644 --- a/tests/lib/files/storage/storage.php +++ b/tests/lib/files/storage/storage.php @@ -253,7 +253,7 @@ abstract class Storage extends \Test\TestCase { $this->instance->file_put_contents('/lorem.txt', file_get_contents($textFile)); $localFile = $this->instance->getLocalFile('/lorem.txt'); $this->assertTrue(file_exists($localFile)); - $this->assertEquals(file_get_contents($localFile), file_get_contents($textFile)); + $this->assertEquals(file_get_contents($textFile), file_get_contents($localFile)); $this->instance->mkdir('/folder'); $this->instance->file_put_contents('/folder/lorem.txt', file_get_contents($textFile)); |