summaryrefslogtreecommitdiff
path: root/tests/test_overall.py
diff options
context:
space:
mode:
authorLance Stout <lancestout@gmail.com>2011-08-25 00:21:53 -0700
committerLance Stout <lancestout@gmail.com>2011-08-25 00:21:53 -0700
commit82546d776da812065d234fcd785db067dc374592 (patch)
tree59c8325c70fc5c5458ff0558ca74978ebbcf2da5 /tests/test_overall.py
parent84f9505a8d23a21005ea72a040e955124dd3c240 (diff)
downloadslixmpp-82546d776da812065d234fcd785db067dc374592.tar.gz
slixmpp-82546d776da812065d234fcd785db067dc374592.tar.bz2
slixmpp-82546d776da812065d234fcd785db067dc374592.tar.xz
slixmpp-82546d776da812065d234fcd785db067dc374592.zip
Fix tests in Python3.
Diffstat (limited to 'tests/test_overall.py')
-rw-r--r--tests/test_overall.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_overall.py b/tests/test_overall.py
index 4821f11d..05fdc6d8 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 = '.%ssleekxmpp' % os.sep
if sys.version_info < (3, 0):
rx = re.compile('/[.]svn')
else: