aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Tests/Controller/RssControllerTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/Wallabag/CoreBundle/Tests/Controller/RssControllerTest.php')
-rw-r--r--src/Wallabag/CoreBundle/Tests/Controller/RssControllerTest.php16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/Wallabag/CoreBundle/Tests/Controller/RssControllerTest.php b/src/Wallabag/CoreBundle/Tests/Controller/RssControllerTest.php
index 45a74c43..87a01b8e 100644
--- a/src/Wallabag/CoreBundle/Tests/Controller/RssControllerTest.php
+++ b/src/Wallabag/CoreBundle/Tests/Controller/RssControllerTest.php
@@ -34,17 +34,17 @@ class RssControllerTest extends WallabagCoreTestCase
34 34
35 public function dataForBadUrl() 35 public function dataForBadUrl()
36 { 36 {
37 return array( 37 return [
38 array( 38 [
39 '/admin/YZIOAUZIAO/unread.xml', 39 '/admin/YZIOAUZIAO/unread.xml',
40 ), 40 ],
41 array( 41 [
42 '/wallace/YZIOAUZIAO/starred.xml', 42 '/wallace/YZIOAUZIAO/starred.xml',
43 ), 43 ],
44 array( 44 [
45 '/wallace/YZIOAUZIAO/archives.xml', 45 '/wallace/YZIOAUZIAO/archives.xml',
46 ), 46 ],
47 ); 47 ];
48 } 48 }
49 49
50 /** 50 /**