# HG changeset patch # User domruf # Date 2016-06-14 19:33:42 # Node ID f55891e42e0e8ce11d8eee1a67cfd54d78f666ce # Parent 3fff45b4c8edd7931dea33f0e6bdac19a144e7e9 tests: check Released lock message test_push_unlocks_repository_git An assert has been commented out since the beginning of Kallithea. Now enable it again. diff --git a/kallithea/tests/other/manual_test_vcs_operations.py b/kallithea/tests/other/manual_test_vcs_operations.py --- a/kallithea/tests/other/manual_test_vcs_operations.py +++ b/kallithea/tests/other/manual_test_vcs_operations.py @@ -494,7 +494,7 @@ class TestVCSOperations(TestController): stdout, stderr = _add_files_and_push('git', DEST) _check_proper_git_push(stdout, stderr) - #assert ('remote: Released lock on repo `%s`' % GIT_REPO) in stdout + assert ('remote: Released lock on repo `%s`' % GIT_REPO) in stderr #we need to cleanup the Session Here ! Session.remove() r = Repository.get_by_repo_name(GIT_REPO)