1
0
miroir de https://github.com/nextcloud/server.git synchronisé 2024-08-12 14:11:31 +02:00

Fix Files\Storage\Home::testRoot()

Cette révision appartient à :
Joas Schilling 2014-11-10 11:38:14 +01:00
Parent 0ab973a3a6
révision 53318c4bb5

Voir le fichier

@ -75,7 +75,12 @@ class Home extends Storage {
* Tests that the root path matches the data dir
*/
public function testRoot() {
$this->assertEquals($this->tmpDir, $this->instance->getLocalFolder(''));
if (\OC_Util::runningOnWindows()) {
// Windows removes trailing slashes when returning paths
$this->assertEquals(rtrim($this->tmpDir, '/'), $this->instance->getLocalFolder(''));
} else {
$this->assertEquals($this->tmpDir, $this->instance->getLocalFolder(''));
}
}
/**