# HG changeset patch # User Mads Kiilerich # Date 1566152870 -7200 # Node ID e2e5140704fc4ae69a42b2a6129bb47de08b8eea # Parent 3a3d96dbd445ca6cd98025e97e565cd667c4895a tests: drop some stray print statements diff -r 3a3d96dbd445 -r e2e5140704fc kallithea/tests/models/test_diff_parsers.py --- a/kallithea/tests/models/test_diff_parsers.py Mon Aug 12 12:54:01 2019 +0200 +++ b/kallithea/tests/models/test_diff_parsers.py Sun Aug 18 20:27:50 2019 +0200 @@ -294,7 +294,6 @@ for d in chunks[1]: l.append('%(action)-7s %(new_lineno)3s %(old_lineno)3s %(line)r\n' % d) s = ''.join(l) - print s assert s == r''' context ... ... u'@@ -51,6 +51,13 @@\n' unmod 51 51 u'\tbegin();\n' diff -r 3a3d96dbd445 -r e2e5140704fc kallithea/tests/models/test_repo_groups.py --- a/kallithea/tests/models/test_repo_groups.py Mon Aug 12 12:54:01 2019 +0200 +++ b/kallithea/tests/models/test_repo_groups.py Sun Aug 18 20:27:50 2019 +0200 @@ -52,9 +52,6 @@ path = os.path.join(*path) return os.path.isdir(path) - def _check_folders(self): - print os.listdir(TESTS_TMP_PATH) - def __delete_group(self, id_): RepoGroupModel().delete(id_) diff -r 3a3d96dbd445 -r e2e5140704fc kallithea/tests/other/test_vcs_operations.py --- a/kallithea/tests/other/test_vcs_operations.py Mon Aug 12 12:54:01 2019 +0200 +++ b/kallithea/tests/other/test_vcs_operations.py Sun Aug 18 20:27:50 2019 +0200 @@ -401,7 +401,6 @@ stdout, stderr = Command(TESTS_TMP_PATH).execute(vt.repo_type, 'init', dest_dir) clone_url = vt.repo_url_param(webserver, vt.repo_name) - print (vt, clone_url) stdout, stderr = Command(dest_dir).execute(vt.repo_type, 'pull', clone_url) if vt.repo_type == 'git':