summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2014-03-25 22:41:09 +0100
committerThomas Müller <thomas.mueller@tmit.eu>2014-03-25 22:41:09 +0100
commit1ae10b9da3280b9bb6fc3965d1ace43f1c0be56f (patch)
tree6c5baf7e48fb399d7bf1b151b7cc40d5052113e2 /tests
parentbbc2e37259128ba12082e731bacdc740495ba2ea (diff)
parenteabeedb306849e3ec8916de5791a3951074a199f (diff)
downloadnextcloud-server-1ae10b9da3280b9bb6fc3965d1ace43f1c0be56f.tar.gz
nextcloud-server-1ae10b9da3280b9bb6fc3965d1ace43f1c0be56f.zip
Merge pull request #7420 from owncloud/cachehooks-first
Manually triger the filecache update hooks before any other hook
Diffstat (limited to 'tests')
-rw-r--r--tests/lib/files/cache/updater.php5
1 files changed, 0 insertions, 5 deletions
diff --git a/tests/lib/files/cache/updater.php b/tests/lib/files/cache/updater.php
index a6ee8c46661..e2fae0ae57f 100644
--- a/tests/lib/files/cache/updater.php
+++ b/tests/lib/files/cache/updater.php
@@ -65,11 +65,6 @@ class Updater extends \PHPUnit_Framework_TestCase {
Filesystem::mount($this->storage, array(), '/' . self::$user . '/files');
\OC_Hook::clear('OC_Filesystem');
-
- \OC_Hook::connect('OC_Filesystem', 'post_write', '\OC\Files\Cache\Updater', 'writeHook');
- \OC_Hook::connect('OC_Filesystem', 'post_delete', '\OC\Files\Cache\Updater', 'deleteHook');
- \OC_Hook::connect('OC_Filesystem', 'post_rename', '\OC\Files\Cache\Updater', 'renameHook');
- \OC_Hook::connect('OC_Filesystem', 'post_touch', '\OC\Files\Cache\Updater', 'touchHook');
}
public function tearDown() {