Merge pull request #20404 from owncloud/fix_autoloader_tests
Fix autoloader unit test output
This commit is contained in:
commit
4604596c3e
|
@ -71,7 +71,6 @@ class AutoLoader extends TestCase {
|
||||||
|
|
||||||
public function testLoadAppNamespace() {
|
public function testLoadAppNamespace() {
|
||||||
$result = $this->loader->findClass('OCA\Files\Foobar');
|
$result = $this->loader->findClass('OCA\Files\Foobar');
|
||||||
print_r($result);
|
|
||||||
$this->assertEquals(2, count($result));
|
$this->assertEquals(2, count($result));
|
||||||
$this->assertStringEndsWith('apps/files/foobar.php', $result[0]);
|
$this->assertStringEndsWith('apps/files/foobar.php', $result[0]);
|
||||||
$this->assertStringEndsWith('apps/files/lib/foobar.php', $result[1]);
|
$this->assertStringEndsWith('apps/files/lib/foobar.php', $result[1]);
|
||||||
|
|
Loading…
Reference in New Issue