summaryrefslogtreecommitdiff
path: root/tests/test_config.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_config.py')
-rw-r--r--tests/test_config.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_config.py b/tests/test_config.py
index 6dee066..de40a2a 100644
--- a/tests/test_config.py
+++ b/tests/test_config.py
@@ -168,6 +168,6 @@ def test_interpolate_exception():
except Exception:
e = sys.exc_info()[1]
expected = "Error in file %s" % os.path.join(config_path, 'test_error.ini')
- eq_(str(e).split(',')[0], expected)
+ eq_(str(e).split(':')[0], expected)
else:
assert False, 'Should have raised an exception'