API Change in behaviour to flysystem reporting for root folders

See 847841974f
This commit is contained in:
Damian Mooyman 2016-04-26 09:36:08 +12:00
parent 525e3d058d
commit daf5385833

View File

@ -169,8 +169,9 @@ class ProtectedFileControllerTest extends FunctionalTest {
$result = $this->get('assets/FileTest-subfolder');
$this->assertResponseEquals(403, null, $result);
// Flysystem reports root folder as not present
$result = $this->get('assets');
$this->assertResponseEquals(403, null, $result);
$this->assertResponseEquals(404, null, $result);
}
/**