forked from github/pelican
fix some more test still using dict
This commit is contained in:
parent
ad6b483746
commit
d88cc86df2
2 changed files with 3 additions and 3 deletions
|
|
@ -73,7 +73,7 @@ class TestSettingsConfiguration(unittest.TestCase):
|
|||
# These 4 settings are required to run configure_settings
|
||||
'PATH': '.',
|
||||
'THEME': DEFAULT_THEME,
|
||||
'THEMES': {'!simple': 'simple'},
|
||||
'THEMES': ['simple', ('!simple', 'simple')],
|
||||
'SITEURL': 'http://blog.notmyidea.org/',
|
||||
'LOCALE': '',
|
||||
}
|
||||
|
|
@ -91,7 +91,7 @@ class TestSettingsConfiguration(unittest.TestCase):
|
|||
'LOCALE': '',
|
||||
'PATH': os.curdir,
|
||||
'THEME': DEFAULT_THEME,
|
||||
'THEMES': {'!simple': 'simple'},
|
||||
'THEMES': ['simple', ('!simple', 'simple')],
|
||||
}
|
||||
configure_settings(settings)
|
||||
# SITEURL should not have a trailing slash
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue