aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/Wallabag/CoreBundle/Controller
diff options
context:
space:
mode:
authorJérémy Benoist <j0k3r@users.noreply.github.com>2019-04-27 10:58:26 +0200
committerGitHub <noreply@github.com>2019-04-27 10:58:26 +0200
commitea54c2adb126a77c244c30059c40149754d4dbb7 (patch)
tree7f9fee18f321bef35ed845ce0f921dab2bddc72b /tests/Wallabag/CoreBundle/Controller
parentbfd69c74e5b4f2ebfcb304b1983bf771c2bb11f7 (diff)
parent35359bd3c67e5b6c6371e2e547a3411ca0a8027b (diff)
downloadwallabag-ea54c2adb126a77c244c30059c40149754d4dbb7.tar.gz
wallabag-ea54c2adb126a77c244c30059c40149754d4dbb7.tar.zst
wallabag-ea54c2adb126a77c244c30059c40149754d4dbb7.zip
Merge pull request #3937 from wallabag/fix/credential-subdomain
Add ability to match many domains for credentials
Diffstat (limited to 'tests/Wallabag/CoreBundle/Controller')
-rw-r--r--tests/Wallabag/CoreBundle/Controller/EntryControllerTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Wallabag/CoreBundle/Controller/EntryControllerTest.php b/tests/Wallabag/CoreBundle/Controller/EntryControllerTest.php
index 479e0700..2cd6aee3 100644
--- a/tests/Wallabag/CoreBundle/Controller/EntryControllerTest.php
+++ b/tests/Wallabag/CoreBundle/Controller/EntryControllerTest.php
@@ -166,7 +166,7 @@ class EntryControllerTest extends WallabagCoreTestCase
166 $this->assertSame($this->url, $content->getUrl()); 166 $this->assertSame($this->url, $content->getUrl());
167 $this->assertContains('Google', $content->getTitle()); 167 $this->assertContains('Google', $content->getTitle());
168 $this->assertSame('fr', $content->getLanguage()); 168 $this->assertSame('fr', $content->getLanguage());
169 $this->assertSame('2016-04-07 19:01:35', $content->getPublishedAt()->format('Y-m-d H:i:s')); 169 $this->assertSame('2015-03-28 11:43:19', $content->getPublishedAt()->format('Y-m-d H:i:s'));
170 $this->assertArrayHasKey('x-frame-options', $content->getHeaders()); 170 $this->assertArrayHasKey('x-frame-options', $content->getHeaders());
171 $client->getContainer()->get('craue_config')->set('store_article_headers', 0); 171 $client->getContainer()->get('craue_config')->set('store_article_headers', 0);
172 } 172 }