summaryrefslogtreecommitdiff
path: root/tests/test_quickstart.py
diff options
context:
space:
mode:
authorshimizukawa <shimizukawa@gmail.com>2015-03-16 00:27:12 +0900
committershimizukawa <shimizukawa@gmail.com>2015-03-16 00:27:12 +0900
commita94c40cbcf0eb0a4af759ccb8302de1f9a65f130 (patch)
treeb1c1d7e89640e2a1ab477d9a5bd882903e3c957a /tests/test_quickstart.py
parent36d47a2193dbfea8693d2f852414530136f01507 (diff)
downloadsphinx-git-a94c40cbcf0eb0a4af759ccb8302de1f9a65f130.tar.gz
ref #1776: test fixed.
Diffstat (limited to 'tests/test_quickstart.py')
-rw-r--r--tests/test_quickstart.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_quickstart.py b/tests/test_quickstart.py
index 51f815049..013700417 100644
--- a/tests/test_quickstart.py
+++ b/tests/test_quickstart.py
@@ -144,7 +144,7 @@ def test_quickstart_defaults(tempdir):
execfile_(conffile, ns)
assert ns['extensions'] == []
assert ns['templates_path'] == ['_templates']
- assert ns['source_suffix'] == ['.rst']
+ assert ns['source_suffix'] == '.rst'
assert ns['master_doc'] == 'index'
assert ns['project'] == 'Sphinx Test'
assert ns['copyright'] == '%s, Georg Brandl' % time.strftime('%Y')
@@ -203,7 +203,7 @@ def test_quickstart_all_answers(tempdir):
'sphinx.ext.autodoc', 'sphinx.ext.doctest', 'sphinx.ext.todo'
]
assert ns['templates_path'] == ['.templates']
- assert ns['source_suffix'] == ['.txt']
+ assert ns['source_suffix'] == '.txt'
assert ns['master_doc'] == 'contents'
assert ns['project'] == u'STASI™'
assert ns['copyright'] == u'%s, Wolfgang Schäuble & G\'Beckstein' % \