summaryrefslogtreecommitdiff
path: root/tests/test_websupport.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_websupport.py')
-rw-r--r--tests/test_websupport.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_websupport.py b/tests/test_websupport.py
index 65957378b..84d6f9e0f 100644
--- a/tests/test_websupport.py
+++ b/tests/test_websupport.py
@@ -65,7 +65,7 @@ class NullStorage(StorageBackend):
@with_support(storage=NullStorage())
def test_no_srcdir(support):
"""Make sure the correct exception is raised if srcdir is not given."""
- raises(SrcdirNotSpecifiedError, support.build)
+ raises(RuntimeError, support.build)
@skip_if(sqlalchemy_missing, 'needs sqlalchemy')