summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2015-11-10 00:25:59 +0100
committerThomas Müller <thomas.mueller@tmit.eu>2015-11-10 00:25:59 +0100
commit4604596c3e2024a5815578f27f413169a0472388 (patch)
tree3d4828b1989dd2baa66430ee5a0dd2dcda1d1024
parent3ee6fda8ec25f73868bd4c88aecb84d3a3b1117c (diff)
parent87e3402ef52d054243a95e447726611f04919490 (diff)
downloadnextcloud-server-4604596c3e2024a5815578f27f413169a0472388.tar.gz
nextcloud-server-4604596c3e2024a5815578f27f413169a0472388.zip
Merge pull request #20404 from owncloud/fix_autoloader_tests
Fix autoloader unit test output
-rw-r--r--tests/lib/autoloader.php1
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/lib/autoloader.php b/tests/lib/autoloader.php
index fa10c0b6216..9fb717c4f63 100644
--- a/tests/lib/autoloader.php
+++ b/tests/lib/autoloader.php
@@ -71,7 +71,6 @@ class AutoLoader extends TestCase {
public function testLoadAppNamespace() {
$result = $this->loader->findClass('OCA\Files\Foobar');
- print_r($result);
$this->assertEquals(2, count($result));
$this->assertStringEndsWith('apps/files/foobar.php', $result[0]);
$this->assertStringEndsWith('apps/files/lib/foobar.php', $result[1]);