1
0
Fork 0
forked from github/pelican

fix some more test still using dict

This commit is contained in:
Ondrej Grover 2014-11-05 10:40:49 +01:00
commit d88cc86df2
2 changed files with 3 additions and 3 deletions

View file

@ -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