# HG changeset patch # User Marcin Kuzminski # Date 2013-04-04 17:49:03 # Node ID 28305020a4ed127e8aca2f1a10e30d902efb6238 # Parent 55585c86be83dcd6ed534f0a8b16eb1878793ab8 fixed broken flash test diff --git a/rhodecode/tests/functional/test_admin_repos.py b/rhodecode/tests/functional/test_admin_repos.py --- a/rhodecode/tests/functional/test_admin_repos.py +++ b/rhodecode/tests/functional/test_admin_repos.py @@ -97,7 +97,7 @@ class TestAdminReposController(TestContr except Exception: self.fail('no repo %s in filesystem' % repo_name) - def test_create_hg_in_group(self): + def z(self): self.log_user() ## create GROUP @@ -118,7 +118,7 @@ class TestAdminReposController(TestContr self.checkSessionFlash(response, 'Created repository %s' - % (repo_name, repo_name)) + % (repo_name_full, repo_name)) #test if the repo was created in the database new_repo = self.Session().query(Repository)\ .filter(Repository.repo_name == repo_name_full).one()