summaryrefslogtreecommitdiff
path: root/tests/integration
diff options
context:
space:
mode:
authorAndrew Dolgov <fox@fakecake.org>2025-05-22 12:40:23 +0300
committerAndrew Dolgov <fox@fakecake.org>2025-05-22 12:40:23 +0300
commit80647fa4e81aafed93aa74e5f6c197fdd03646a2 (patch)
treeeda27ad811654a0f0ce2621f18a8df047039725a /tests/integration
parentcb6fe8f974898421739e5c825780ad1301b312ab (diff)
fix typo
Diffstat (limited to 'tests/integration')
-rw-r--r--tests/integration/selenium_test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/integration/selenium_test.py b/tests/integration/selenium_test.py
index f3ae0e346..068f40c9b 100644
--- a/tests/integration/selenium_test.py
+++ b/tests/integration/selenium_test.py
@@ -18,7 +18,7 @@ class SeleniumTest(unittest.TestCase):
self.driver = webdriver.Remote(command_executor=SELENIUM_GRID_ENDPOINT, options=webdriver.ChromeOptions())
self.base_url = f"http://tt-rss-{CI_COMMIT_SHORT_SHA}-app.{K8S_NAMESPACE}.svc.cluster.local/tt-rss"
- self.driver.driver.implicitly_wait(2)
+ self.driver.implicitly_wait(2)
def tearDown(self):
self.driver.quit()