diff options
author | Hui Lan <lanhui@zjnu.edu.cn> | 2021-02-04 20:28:23 +0800 |
---|---|---|
committer | Hui Lan <lanhui@zjnu.edu.cn> | 2021-02-04 20:28:23 +0800 |
commit | 467707b1f1ba7ba39d9900ac1d78f3def186601a (patch) | |
tree | 77b530a5e67b9050b06c2cb31b443d6b8776db57 | |
parent | 99a41fe74db3fc9dda4dfc3dea3855c6e28abe3d (diff) |
app/test/test_signup.py: use correct verification string.
-rw-r--r-- | app/test/test_signup.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/test/test_signup.py b/app/test/test_signup.py index 4df0258..74d574f 100644 --- a/app/test/test_signup.py +++ b/app/test/test_signup.py @@ -14,7 +14,7 @@ HOME_PAGE = 'http://121.4.94.30:91/' def test_signup(): driver.get(HOME_PAGE) - assert "English Pal for" in driver.page_source + assert "English Pal -" in driver.page_source elem = driver.find_element_by_link_text('成为会员') elem.click() |