summaryrefslogtreecommitdiffstats
path: root/tests/unit/utility/SimplePieAPIFactoryTest.php
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2014-10-21 16:45:36 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2014-10-21 16:45:36 +0200
commit42d69a95f3276a2d6089ca68f635c4e2f6aa7a23 (patch)
tree6a17fd7998f291e6dec1d996c1e7c724b92b8e58 /tests/unit/utility/SimplePieAPIFactoryTest.php
parent0e6598b0734fb927109f745d9c0f3a8605a30ca5 (diff)
convert tabs indention to indention with 4 spaces because of mixing of both variants in code and better readability on github and websites because you cant set the indention width there and 8 spaces will be used for a tab
Diffstat (limited to 'tests/unit/utility/SimplePieAPIFactoryTest.php')
-rw-r--r--tests/unit/utility/SimplePieAPIFactoryTest.php24
1 files changed, 12 insertions, 12 deletions
diff --git a/tests/unit/utility/SimplePieAPIFactoryTest.php b/tests/unit/utility/SimplePieAPIFactoryTest.php
index a7e7472a0..4f401a72e 100644
--- a/tests/unit/utility/SimplePieAPIFactoryTest.php
+++ b/tests/unit/utility/SimplePieAPIFactoryTest.php
@@ -17,18 +17,18 @@ namespace OCA\News\Utility;
class SimplePieAPIFactoryTest extends \PHPUnit_Framework_TestCase {
- public function testGetFile() {
- $factory = new SimplePieAPIFactory();
- $file = $factory->getFile('php://input', 10, 5, $headers='headers',
- $useragent='flashce', $force_fsockopen=true);
- $this->assertTrue($file instanceof \SimplePie_File);
- }
-
-
- public function testGetCore() {
- $factory = new SimplePieAPIFactory();
- $this->assertTrue($factory->getCore() instanceof \SimplePie);
- }
+ public function testGetFile() {
+ $factory = new SimplePieAPIFactory();
+ $file = $factory->getFile('php://input', 10, 5, $headers='headers',
+ $useragent='flashce', $force_fsockopen=true);
+ $this->assertTrue($file instanceof \SimplePie_File);
+ }
+
+
+ public function testGetCore() {
+ $factory = new SimplePieAPIFactory();
+ $this->assertTrue($factory->getCore() instanceof \SimplePie);
+ }
} \ No newline at end of file