From 6206ec80b79f9e896a8ac7d31bacba0c42bb9f5d Mon Sep 17 00:00:00 2001 From: Matt Hughes Date: Thu, 26 Sep 2019 13:59:19 -0400 Subject: [PATCH] Delete flaky test test_comment_deletion_as_student This test has been flaky in the past; I turned up TNLARCHIVE-530 and TNLARCHIVE-2147 in JIRA while verifying no one else had actually gotten it. --- .../acceptance/tests/discussion/test_discussion.py | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/common/test/acceptance/tests/discussion/test_discussion.py b/common/test/acceptance/tests/discussion/test_discussion.py index 664dfa785a..7698fefcf2 100644 --- a/common/test/acceptance/tests/discussion/test_discussion.py +++ b/common/test/acceptance/tests/discussion/test_discussion.py @@ -583,16 +583,6 @@ class DiscussionCommentDeletionTest(BaseDiscussionTestCase): ) view.push() - def test_comment_deletion_as_student(self): - self.setup_user() - self.setup_view() - page = self.create_single_thread_page("comment_deletion_test_thread") - page.visit() - self.assertTrue(page.is_comment_deletable("comment_self_author")) - self.assertTrue(page.is_comment_visible("comment_other_author")) - self.assertFalse(page.is_comment_deletable("comment_other_author")) - page.delete_comment("comment_self_author") - def test_comment_deletion_as_moderator(self): self.setup_user(roles=['Moderator']) self.setup_view()