From 87e3402ef52d054243a95e447726611f04919490 Mon Sep 17 00:00:00 2001 From: Roeland Jago Douma Date: Mon, 9 Nov 2015 15:54:40 +0100 Subject: [PATCH] Fix autoloader unit test output Removed leftover print statement --- tests/lib/autoloader.php | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/lib/autoloader.php b/tests/lib/autoloader.php index fa10c0b621..9fb717c4f6 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]);