changeset 3673:28305020a4ed beta

fixed broken flash test
author Marcin Kuzminski <marcin@python-works.com>
date Thu, 04 Apr 2013 17:49:03 +0200
parents 55585c86be83
children ff2ea58debb5
files rhodecode/tests/functional/test_admin_repos.py
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/rhodecode/tests/functional/test_admin_repos.py	Thu Apr 04 17:45:55 2013 +0200
+++ b/rhodecode/tests/functional/test_admin_repos.py	Thu Apr 04 17:49:03 2013 +0200
@@ -97,7 +97,7 @@
         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 @@
 
         self.checkSessionFlash(response,
                                'Created repository <a href="/%s">%s</a>'
-                               % (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()