diff options
author | Roeland Jago Douma <rullzer@owncloud.com> | 2015-11-09 15:54:40 +0100 |
---|---|---|
committer | Roeland Jago Douma <rullzer@owncloud.com> | 2015-11-09 15:54:40 +0100 |
commit | 87e3402ef52d054243a95e447726611f04919490 (patch) | |
tree | e7b50878bc82003013ff4f2174d0d4965c7026a1 /tests/lib/autoloader.php | |
parent | 37c5edc20211861297c50f59cbe26bdc5d3b1970 (diff) | |
download | nextcloud-server-87e3402ef52d054243a95e447726611f04919490.tar.gz nextcloud-server-87e3402ef52d054243a95e447726611f04919490.zip |
Fix autoloader unit test output
Removed leftover print statement
Diffstat (limited to 'tests/lib/autoloader.php')
-rw-r--r-- | tests/lib/autoloader.php | 1 |
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]); |