aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcin Kuzminski <marcin@python-works.com>2013-04-04 17:49:03 +0200
committerMarcin Kuzminski <marcin@python-works.com>2013-04-04 17:49:03 +0200
commitc9e08d2a01f3ee674e57374382bca62a6b0ad8e3 (patch)
tree3f5d18fda0f643c891bceacbc8d26e651532122b
parent72d79017fb672067edf3b5b4879b99304baf3381 (diff)
fixed broken flash test
--HG-- branch : beta extra : rebase_source : 2ce21acc69eeeaf772719e40db32659880cce546
-rw-r--r--rhodecode/tests/functional/test_admin_repos.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/rhodecode/tests/functional/test_admin_repos.py b/rhodecode/tests/functional/test_admin_repos.py
index 9c430d21..e4367d5a 100644
--- a/rhodecode/tests/functional/test_admin_repos.py
+++ b/rhodecode/tests/functional/test_admin_repos.py
@@ -97,7 +97,7 @@ class TestAdminReposController(TestController):
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(TestController):
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()