Browse Source

Unskipping and debuging a test

Yann Weber 8 years ago
parent
commit
d54ef17061
1 changed files with 1 additions and 2 deletions
  1. 1
    2
      tests/settings/test_settings_loader.py

+ 1
- 2
tests/settings/test_settings_loader.py View File

@@ -252,9 +252,8 @@ class SettingsLoaderTestCase(unittest.TestCase):
252 252
         
253 253
         os.remove('tests/settings/settings_examples/conf_setdef.d/generated.ini')
254 254
         
255
-    @unittest.skip
256 255
     def test_invalid_conf(self):
257 256
         from lodel.settings.settings import Settings
258 257
         Settings.stop()
259
-        with self.assertRaise(SettingsErrors):
258
+        with self.assertRaises(SettingsErrors):
260 259
             Settings('tests/settings/settings_examples/bad_conf.d')

Loading…
Cancel
Save