diff --git a/news/168.bugfix b/news/168.bugfix new file mode 100644 index 0000000..28d8129 --- /dev/null +++ b/news/168.bugfix @@ -0,0 +1,2 @@ +Fix tests failing for Plone 6, deprecate Plone 4 and older. +[tschorr] diff --git a/plone/app/discussion/tests/functional_test_comments.txt b/plone/app/discussion/tests/functional_test_comments.txt index 36ad8a1..2ff35a3 100644 --- a/plone/app/discussion/tests/functional_test_comments.txt +++ b/plone/app/discussion/tests/functional_test_comments.txt @@ -269,9 +269,8 @@ Use the Plone control panel to enable comment editing. Extract the edit comment url from the first "edit comment" button - >>> from Products.CMFPlone import __version__ >>> browser.open(urldoc1) - >>> url = __version__[0] == '5' and browser.getLink(url='@@edit-comment').url or browser.getForm(name='edit', index=0).action + >>> url = browser.getLink(url='@@edit-comment').url >>> '@@edit-comment' in url True @@ -299,7 +298,7 @@ Check it ain't so. Opening the edit comment view, then cancel, does nothing. - >>> url = __version__[0] == '5' and browser.getLink(url='@@edit-comment').url or browser.getForm(name='edit', index=0).action + >>> url = browser.getLink(url='@@edit-comment').url >>> '@@edit-comment' in url True >>> browser.open(url)