From 41a53fc8fffc0153518a94844f7a3661c713cf1f Mon Sep 17 00:00:00 2001 From: Timo Stollenwerk Date: Sun, 4 Nov 2012 17:18:46 +0100 Subject: [PATCH] Fix failing test. --- plone/app/discussion/tests/functional_test_comments.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plone/app/discussion/tests/functional_test_comments.txt b/plone/app/discussion/tests/functional_test_comments.txt index 7af4dee..14f3e7c 100644 --- a/plone/app/discussion/tests/functional_test_comments.txt +++ b/plone/app/discussion/tests/functional_test_comments.txt @@ -227,7 +227,7 @@ Find a comment id to reply to. >>> browser.open(urldoc1) >>> import re >>> comment_div = re.findall('', browser.contents)[0] - >>> id = re.findall('"([^"]*)"', comment_div)[2] + >>> id = re.findall('"([^"]*)"', comment_div)[1] Post a reply to an existing comment.