Skip to content

Commit b3e3e7f

Browse files
committed
refactor(tests): changed BaseSeleniumTest to use ESIndexTransactionTestCase
1 parent 3d68d8a commit b3e3e7f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cl/tests/base.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
from cl.lib.decorators import retry
2323
from cl.search.models import SEARCH_TYPES
24-
from cl.tests.cases import ESIndexTestCase, StaticLiveServerTestCase
24+
from cl.tests.cases import ESIndexTransactionTestCase, StaticLiveServerTestCase
2525

2626
SELENIUM_TIMEOUT = 120
2727
if "SELENIUM_TIMEOUT" in os.environ:
@@ -36,7 +36,7 @@
3636
ALLOWED_HOSTS=["*"],
3737
)
3838
class BaseSeleniumTest(
39-
SerializeMixin, StaticLiveServerTestCase, ESIndexTestCase
39+
SerializeMixin, StaticLiveServerTestCase, ESIndexTransactionTestCase
4040
):
4141
"""Base class for Selenium Tests. Sets up a few attributes:
4242
* browser - instance of Selenium WebDriver

0 commit comments

Comments
 (0)