diff options
author | Georg Ehrke <developer@georgehrke.com> | 2014-06-04 17:18:20 +0200 |
---|---|---|
committer | Georg Ehrke <developer@georgehrke.com> | 2014-06-04 17:18:20 +0200 |
commit | 00b7f365bcbf6ab81e9a955f25b323c1497f822b (patch) | |
tree | 9c5c8e1d4707a4f929e06ecd29e07599f1900502 /tests | |
parent | 724d027f199f77c6e1442c03dba4b3363f973412 (diff) | |
download | nextcloud-server-00b7f365bcbf6ab81e9a955f25b323c1497f822b.tar.gz nextcloud-server-00b7f365bcbf6ab81e9a955f25b323c1497f822b.zip |
remove not needed unlink in installer test
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lib/installer.php | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/tests/lib/installer.php b/tests/lib/installer.php index 97b14ef579a..09ad558e93c 100644 --- a/tests/lib/installer.php +++ b/tests/lib/installer.php @@ -30,7 +30,6 @@ class Test_Installer extends PHPUnit_Framework_TestCase { //clean-up OC_Installer::removeApp(self::$appid); - unlink($tmp); } public function testUpdateApp() { @@ -68,7 +67,5 @@ class Test_Installer extends PHPUnit_Framework_TestCase { //clean-up OC_Installer::removeApp(self::$appid); - unlink($oldTmp); - unlink($newTmp); } } |