diff options
author | Björn Schießle <schiessle@owncloud.com> | 2013-06-25 18:03:05 +0200 |
---|---|---|
committer | Björn Schießle <schiessle@owncloud.com> | 2013-07-05 16:00:43 +0200 |
commit | ec6350079f5eab706bb4567654c99c6f800a4f49 (patch) | |
tree | 5c097550298affcb6249df00d23d5e20ecf4949b | |
parent | 15cb8e4efd5c7f74dc5f0336b0e0b5aba5a9d470 (diff) | |
download | nextcloud-server-ec6350079f5eab706bb4567654c99c6f800a4f49.tar.gz nextcloud-server-ec6350079f5eab706bb4567654c99c6f800a4f49.zip |
fix getUidAndFilename() test
-rwxr-xr-x | apps/files_encryption/tests/util.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_encryption/tests/util.php b/apps/files_encryption/tests/util.php index cb10befc8e4..368b7b3dc3f 100755 --- a/apps/files_encryption/tests/util.php +++ b/apps/files_encryption/tests/util.php @@ -219,7 +219,7 @@ class Test_Encryption_Util extends \PHPUnit_Framework_TestCase { \OC_User::setUserId(\Test_Encryption_Util::TEST_ENCRYPTION_UTIL_USER1); - $filename = 'tmp-' . time() . '.test'; + $filename = '/tmp-' . time() . '.test'; // Disable encryption proxy to prevent recursive calls $proxyStatus = \OC_FileProxy::$enabled; |