Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/nextcloudpi.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rwxr-xr-xtests/tests.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/tests.py b/tests/tests.py
index ebf10688..9cab4a93 100755
--- a/tests/tests.py
+++ b/tests/tests.py
@@ -111,6 +111,7 @@ class LoginNewUserTest(unittest.TestCase):
driver.find_element_by_id("user").send_keys("test_user1")
driver.find_element_by_id("password").send_keys("ownyourbits")
driver.find_element_by_id("submit").click()
+ self.assertNotIn("Wrong password", driver.page_source)
time.sleep(60) # first run can be really slow on QEMU
wait = WebDriverWait(driver, 210)