aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/front
diff options
context:
space:
mode:
authorArthurHoaro <arthur@hoa.ro>2020-09-03 14:57:24 +0200
committerGitHub <noreply@github.com>2020-09-03 14:57:24 +0200
commit46d3f8162bb7950d3c7fec78ffcc2bdaf349dced (patch)
tree147736ec4a29d44987137fe098e467627f59bec6 /tests/front
parent21163a3329ef19dc6ebadb75d6452ac02fd59ab3 (diff)
parent0386a84d824f95b991280e8c93645fa013eef7c4 (diff)
downloadShaarli-46d3f8162bb7950d3c7fec78ffcc2bdaf349dced.tar.gz
Shaarli-46d3f8162bb7950d3c7fec78ffcc2bdaf349dced.tar.zst
Shaarli-46d3f8162bb7950d3c7fec78ffcc2bdaf349dced.zip
Merge pull request #1537 from ArthurHoaro/fix/back-compatible-targets
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