diff options
author | Joas Schilling <nickvergessen@owncloud.com> | 2016-01-26 14:51:06 +0100 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2016-01-27 12:53:44 +0100 |
commit | 2563c3ffafb225742c8bf559bbcf567e878d93df (patch) | |
tree | c0d775582ab62dd019820a338e242f78a1e78e48 /tests | |
parent | 0c7922cf7071b45c5eed782aa8e84416ea91a1ad (diff) | |
download | nextcloud-server-2563c3ffafb225742c8bf559bbcf567e878d93df.tar.gz nextcloud-server-2563c3ffafb225742c8bf559bbcf567e878d93df.zip |
Fix failing oracle and postgres tests
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lib/files/config/usermountcache.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/lib/files/config/usermountcache.php b/tests/lib/files/config/usermountcache.php index 0f5e8f4baeb..070c2f6176d 100644 --- a/tests/lib/files/config/usermountcache.php +++ b/tests/lib/files/config/usermountcache.php @@ -279,11 +279,11 @@ class UserMountCache extends TestCase { 'mimepart' => 0, 'size' => 0, 'storage_mtime' => 0, - 'encrypted' => false, + 'encrypted' => 0, 'unencrypted_size' => 0, 'etag' => '', 'permissions' => 31 - ]); + ], ['storage', 'path_hash']); $id = (int)$this->connection->lastInsertId('*PREFIX*filecache'); $this->fileIds[] = $id; return $id; |