From 95d07f6cd05c343da61839711b79a4909c5db98d Mon Sep 17 00:00:00 2001 From: Joey Curtin Date: Thu, 28 Mar 2013 15:12:38 -0400 Subject: [PATCH] fixed theme loc unittest --- pelican/tests/test_importedsettings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pelican/tests/test_importedsettings.py b/pelican/tests/test_importedsettings.py index d462a7b4..cf0b40d2 100644 --- a/pelican/tests/test_importedsettings.py +++ b/pelican/tests/test_importedsettings.py @@ -20,7 +20,7 @@ class TestImportLib(unittest.TestCase): def test_importedsettings(self): self.settings = read_settings(path=None, override={ 'LOCALE': locale.normalize('en_US'), - 'THEME': '/'.join([self.path, 'themes/simple']) + 'THEME': '/'.join([self.path, 'pelican/themes/simple']) }) from pelican.settings import conf for key in _DEFAULT_CONFIG.keys():