aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/front
diff options
context:
space:
mode:
authorArthurHoaro <arthur@hoa.ro>2020-09-03 10:18:04 +0200
committerArthurHoaro <arthur@hoa.ro>2020-09-03 10:18:04 +0200
commit0386a84d824f95b991280e8c93645fa013eef7c4 (patch)
tree0a980f55ceec792542e386e5f7076f4f22893898 /tests/front
parentce7918386a00c4a10ad8c9942c8ac28ea1fae0c2 (diff)
downloadShaarli-0386a84d824f95b991280e8c93645fa013eef7c4.tar.gz
Shaarli-0386a84d824f95b991280e8c93645fa013eef7c4.tar.zst
Shaarli-0386a84d824f95b991280e8c93645fa013eef7c4.zip
Fix feed target in UT
Diffstat (limited to 'tests/front')
-rw-r--r--tests/front/controller/visitor/FeedControllerTest.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/front/controller/visitor/FeedControllerTest.php b/tests/front/controller/visitor/FeedControllerTest.php
index fb417e2a..0a6b577f 100644
--- a/tests/front/controller/visitor/FeedControllerTest.php
+++ b/tests/front/controller/visitor/FeedControllerTest.php
@@ -52,7 +52,7 @@ class FeedControllerTest extends TestCase
52 static::assertSame('data', $data['content']); 52 static::assertSame('data', $data['content']);
53 53
54 static::assertArrayHasKey('loggedin', $param); 54 static::assertArrayHasKey('loggedin', $param);
55 static::assertSame('rss', $param['target']); 55 static::assertSame('feed.rss', $param['target']);
56 }) 56 })
57 ; 57 ;
58 58
@@ -91,7 +91,7 @@ class FeedControllerTest extends TestCase
91 static::assertSame('data', $data['content']); 91 static::assertSame('data', $data['content']);
92 92
93 static::assertArrayHasKey('loggedin', $param); 93 static::assertArrayHasKey('loggedin', $param);
94 static::assertSame('atom', $param['target']); 94 static::assertSame('feed.atom', $param['target']);
95 }) 95 })
96 ; 96 ;
97 97
@@ -131,7 +131,7 @@ class FeedControllerTest extends TestCase
131 static::assertSame('data', $data['content']); 131 static::assertSame('data', $data['content']);
132 132
133 static::assertArrayHasKey('loggedin', $param); 133 static::assertArrayHasKey('loggedin', $param);
134 static::assertSame('atom', $param['target']); 134 static::assertSame('feed.atom', $param['target']);
135 }) 135 })
136 ; 136 ;
137 137