Skip to content

Commit

Permalink
fix update account test
Browse files Browse the repository at this point in the history
  • Loading branch information
Bernhard Posselt committed Nov 16, 2017
1 parent 8e7e896 commit de6749c
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion nextcloudappstore/core/tests/e2e/test_update_account.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
from nextcloudappstore.core.tests.e2e import TEST_PASSWORD
from nextcloudappstore.core.tests.e2e.base import BaseStoreTest


Expand All @@ -16,7 +17,12 @@ def test_update_account(self):
mail = self.by_id('id_email')
mail.clear()
mail.send_keys('change@me.com')
mail.submit()

passwd = self.by_id('id_passwd')
passwd.clear()
passwd.send_keys(TEST_PASSWORD)

passwd.submit()

self.assertTrue(self.by_css('.alert-success').is_displayed())

Expand Down

0 comments on commit de6749c

Please sign in to comment.