changeset 6364:d55626d8c933

tests: remove unused maxDiff
author Mads Kiilerich <mads@kiilerich.com>
date Mon, 19 Dec 2016 02:52:01 +0100
parents 81fdf2f62ef2
children 4964ecd82e3b
files kallithea/tests/api/api_base.py kallithea/tests/base.py
diffstat 2 files changed, 0 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/kallithea/tests/api/api_base.py	Sun Dec 04 20:22:23 2016 +0100
+++ b/kallithea/tests/api/api_base.py	Mon Dec 19 02:52:01 2016 +0100
@@ -109,7 +109,6 @@
         pass
 
     def setup_method(self, method):
-        self.maxDiff = None
         make_user_group()
         make_repo_group()
 
--- a/kallithea/tests/base.py	Sun Dec 04 20:22:23 2016 +0100
+++ b/kallithea/tests/base.py	Mon Dec 19 02:52:01 2016 +0100
@@ -149,7 +149,6 @@
         self.wsgiapp = pylons.test.pylonsapp
         self.init_stack(self.wsgiapp.config)
         self.app = TestApp(self.wsgiapp)
-        self.maxDiff = None
         self.index_location = config['app_conf']['index_dir']
         return self.app