Reenable proxies if a test failed to restore it

This commit is contained in:
Vincent Petry 2014-07-15 23:05:01 +02:00
parent bf657883d2
commit b2c06354e8
1 changed files with 2 additions and 0 deletions

View File

@ -166,6 +166,8 @@ class TestCleanupListener implements PHPUnit_Framework_TestListener {
private function cleanProxies() {
$proxies = OC_FileProxy::getProxies();
OC_FileProxy::clearProxies();
// reenable in case some test failed to reenable them
OC_FileProxy::$enabled = true;
return count($proxies) > 0;
}
}