Added missing r to IntevalSettings in test_core_modules

This commit is contained in:
Matthieu Coudron 2014-12-18 10:46:53 +01:00
parent 69c1cd6460
commit 49a0f01c76

View File

@ -20,9 +20,9 @@ class IntervalModuleMetaTest(unittest.TestCase):
(('option', 'desc'), 'interval')) (('option', 'desc'), 'interval'))
def test_settings_with_interval(self): def test_settings_with_interval(self):
class SettingsInteval(IntervalModule): class SettingsInterval(IntervalModule):
settings = ('option', 'interval') settings = ('option', 'interval')
self.assertEqual(SettingsInteval.settings, ('option', 'interval')) self.assertEqual(SettingsInterval.settings, ('option', 'interval'))
def test_settings_with_interval_desc(self): def test_settings_with_interval_desc(self):
class SetttingsIntervalDesc(IntervalModule): class SetttingsIntervalDesc(IntervalModule):