changeset 7843:e2e5140704fc

tests: drop some stray print statements
author Mads Kiilerich <mads@kiilerich.com>
date Sun, 18 Aug 2019 20:27:50 +0200
parents 3a3d96dbd445
children a8e6bb9ee9ea
files kallithea/tests/models/test_diff_parsers.py kallithea/tests/models/test_repo_groups.py kallithea/tests/other/test_vcs_operations.py
diffstat 3 files changed, 0 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- 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'<u>\t</u>begin();\n'
--- 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_)
 
--- 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':