aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/Wallabag/CoreBundle/Controller/ConfigControllerTest.php
diff options
context:
space:
mode:
authorSébastien Viande <sviande@gmail.com>2018-04-11 11:42:52 +0200
committerJeremy Benoist <jeremy.benoist@gmail.com>2018-09-21 10:33:33 +0200
commit7975395d10bb381de8cd15b5ee15198318af6d55 (patch)
tree98e3fc9f9ca7bddfd4331132c44953aa4e120259 /tests/Wallabag/CoreBundle/Controller/ConfigControllerTest.php
parent2f3af70e1ae6f9dd403e87d232ddf5315e34e430 (diff)
downloadwallabag-7975395d10bb381de8cd15b5ee15198318af6d55.tar.gz
wallabag-7975395d10bb381de8cd15b5ee15198318af6d55.tar.zst
wallabag-7975395d10bb381de8cd15b5ee15198318af6d55.zip
Entry: add archived_at property and updateArchived method
Diffstat (limited to 'tests/Wallabag/CoreBundle/Controller/ConfigControllerTest.php')
-rw-r--r--tests/Wallabag/CoreBundle/Controller/ConfigControllerTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Wallabag/CoreBundle/Controller/ConfigControllerTest.php b/tests/Wallabag/CoreBundle/Controller/ConfigControllerTest.php
index e07c57dd..d709f4eb 100644
--- a/tests/Wallabag/CoreBundle/Controller/ConfigControllerTest.php
+++ b/tests/Wallabag/CoreBundle/Controller/ConfigControllerTest.php
@@ -849,7 +849,7 @@ class ConfigControllerTest extends WallabagCoreTestCase
849 $entryArchived->setContent('Youhou'); 849 $entryArchived->setContent('Youhou');
850 $entryArchived->setTitle('Youhou'); 850 $entryArchived->setTitle('Youhou');
851 $entryArchived->addTag($tagArchived); 851 $entryArchived->addTag($tagArchived);
852 $entryArchived->setArchived(true); 852 $entryArchived->updateArchived(true);
853 $em->persist($entryArchived); 853 $em->persist($entryArchived);
854 854
855 $annotationArchived = new Annotation($user); 855 $annotationArchived = new Annotation($user);