summaryrefslogtreecommitdiff
path: root/tests/test_overall.py
diff options
context:
space:
mode:
authorLink Mauve <linkmauve@linkmauve.fr>2020-12-04 00:30:13 +0100
committerLink Mauve <linkmauve@linkmauve.fr>2020-12-04 00:30:13 +0100
commit922ad8d9ea32788039f303f8d96e553981b6ad57 (patch)
tree4509cc5568237c8bf421a393e9db943c1e448ab1 /tests/test_overall.py
parent56f44dc47d53f8b387278fc7d13a11a914201df8 (diff)
parent8eb756d55c575055cddf9f0bc6f5f1ae27486dc5 (diff)
downloadslixmpp-922ad8d9ea32788039f303f8d96e553981b6ad57.tar.gz
slixmpp-922ad8d9ea32788039f303f8d96e553981b6ad57.tar.bz2
slixmpp-922ad8d9ea32788039f303f8d96e553981b6ad57.tar.xz
slixmpp-922ad8d9ea32788039f303f8d96e553981b6ad57.zip
Merge branch 'muc-more' into 'master'
MUC: Fix invite/decline issue and add basic stanza tests See merge request poezio/slixmpp!71
Diffstat (limited to 'tests/test_overall.py')
-rw-r--r--tests/test_overall.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/tests/test_overall.py b/tests/test_overall.py
index 70c34a6a..16ac2f83 100644
--- a/tests/test_overall.py
+++ b/tests/test_overall.py
@@ -2,9 +2,9 @@ import os
import re
import sys
import unittest
-import tabnanny
import compileall
+
class TestOverall(unittest.TestCase):
"""
@@ -18,9 +18,5 @@ class TestOverall(unittest.TestCase):
rx = re.compile('/[.]svn|.*26.*')
self.assertTrue(compileall.compile_dir(src, rx=rx, quiet=True))
- def testTabNanny(self):
- """Testing that indentation is consistent"""
- self.assertFalse(tabnanny.check('..%sslixmpp' % os.sep))
-
suite = unittest.TestLoader().loadTestsFromTestCase(TestOverall)