From ca2c24a0587e8921cc57c348de8025a99acb5359 Mon Sep 17 00:00:00 2001
From: Feanil Patel <feanil@edx.org>
Date: Wed, 27 Nov 2019 10:19:38 -0500
Subject: [PATCH] Remove this test because it is flaky.

It failed and passed on the same commit.  The failure was that the page
timed out, so it could be fixed by making that page performant.  I'd
rather not increase the timeout for the page to load as the bokchoy
tests are already very slow.

I'm also not sure why this test needs to exist.  I would think that this
could be tested on the underlying function without testing at the UI
layer.
---
 common/test/acceptance/tests/lms/test_programs.py | 11 -----------
 1 file changed, 11 deletions(-)

diff --git a/common/test/acceptance/tests/lms/test_programs.py b/common/test/acceptance/tests/lms/test_programs.py
index 4574f98e509..32446a4af8c 100644
--- a/common/test/acceptance/tests/lms/test_programs.py
+++ b/common/test/acceptance/tests/lms/test_programs.py
@@ -83,17 +83,6 @@ class ProgramListingPageTest(ProgramPageBase):
 
         self.listing_page = ProgramListingPage(self.browser)
 
-    def test_no_enrollments(self):
-        """Verify that no cards appear when the user has no enrollments."""
-        self.auth(enroll=False)
-        self.stub_catalog_api(self.programs, self.pathways)
-        self.cache_programs()
-
-        self.listing_page.visit()
-
-        self.assertTrue(self.listing_page.is_sidebar_present)
-        self.assertFalse(self.listing_page.are_cards_present)
-
     def test_no_programs(self):
         """
         Verify that no cards appear when the user has enrollments
-- 
GitLab