diff --git a/rhodecode/tests/functional/test_summary.py b/rhodecode/tests/functional/test_summary.py --- a/rhodecode/tests/functional/test_summary.py +++ b/rhodecode/tests/functional/test_summary.py @@ -44,8 +44,8 @@ class TestSummaryController(TestControll ) # clone url... - response.mustcontain("""""" % HG_REPO) - response.mustcontain("""""" % ID) + response.mustcontain('''id="clone_url" readonly="readonly" value="http://test_admin@localhost:80/%s"''' % HG_REPO) + response.mustcontain('''id="clone_url_id" readonly="readonly" value="http://test_admin@localhost:80/_%s"''' % ID) def test_index_git(self): self.log_user() @@ -67,8 +67,8 @@ class TestSummaryController(TestControll ) # clone url... - response.mustcontain("""""" % GIT_REPO) - response.mustcontain("""""" % ID) + response.mustcontain('''id="clone_url" readonly="readonly" value="http://test_admin@localhost:80/%s"''' % GIT_REPO) + response.mustcontain('''id="clone_url_id" readonly="readonly" value="http://test_admin@localhost:80/_%s"''' % ID) def test_index_by_id_hg(self): self.log_user()