This is an automated email from the ASF dual-hosted git repository.

gcruz pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/allura.git


The following commit(s) were added to refs/heads/master by this push:
     new 9fcb470  8417 fix for failing test
9fcb470 is described below

commit 9fcb470d8a6df8606216e06f78f98fe487b057f0
Author: Guillermo Cruz <[email protected]>
AuthorDate: Tue Mar 8 12:19:04 2022 -0700

    8417 fix for failing test
---
 ForgeDiscussion/forgediscussion/tests/functional/test_forum.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ForgeDiscussion/forgediscussion/tests/functional/test_forum.py 
b/ForgeDiscussion/forgediscussion/tests/functional/test_forum.py
index 3bfd8b8..838ec0d 100644
--- a/ForgeDiscussion/forgediscussion/tests/functional/test_forum.py
+++ b/ForgeDiscussion/forgediscussion/tests/functional/test_forum.py
@@ -367,7 +367,7 @@ class TestForum(TestController):
         form['add_forum.description'] = '<a href="http://cnn.com";>This is 
CNN</a>'
         form.submit()
         r = self.app.get('/discussion/')
-        assert_equal(len(r.html.findAll('a', rel='nofollow')), 1)
+        assert_equal(len(r.html.findAll('a', rel='nofollow')), 2)
 
     def test_forum_search(self):
         self.app.get('/discussion/search')

Reply via email to