summaryrefslogtreecommitdiff
path: root/tests/test_overall.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_overall.py')
-rw-r--r--tests/test_overall.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_overall.py b/tests/test_overall.py
index 05fdc6d8..411ebcdf 100644
--- a/tests/test_overall.py
+++ b/tests/test_overall.py
@@ -14,7 +14,7 @@ class TestOverall(unittest.TestCase):
def testModules(self):
"""Testing all modules by compiling them"""
- src = '.%ssleekxmpp' % os.sep
+ src = '.%sslixmpp' % os.sep
if sys.version_info < (3, 0):
rx = re.compile('/[.]svn')
else:
@@ -23,7 +23,7 @@ class TestOverall(unittest.TestCase):
def testTabNanny(self):
"""Testing that indentation is consistent"""
- self.failIf(tabnanny.check('..%ssleekxmpp' % os.sep))
+ self.failIf(tabnanny.check('..%sslixmpp' % os.sep))
suite = unittest.TestLoader().loadTestsFromTestCase(TestOverall)