diff options
author | Georg Brandl <georg@python.org> | 2010-11-20 17:41:20 +0100 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-11-20 17:41:20 +0100 |
commit | 2ab934b2322050f3554c5f28ef4827ebecd90571 (patch) | |
tree | 703750d8e3c1b82196803976af3875cabc55b077 /tests/test_websupport.py | |
parent | 47bc250f19e80ce705a6435184c22d40e4a3b8c7 (diff) | |
download | sphinx-git-2ab934b2322050f3554c5f28ef4827ebecd90571.tar.gz |
Make websupport builder inherit from serializing builder, remove separate WebSupportApp.
Diffstat (limited to 'tests/test_websupport.py')
-rw-r--r-- | tests/test_websupport.py | 2 |
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') |