From 49a0f01c76f1d2028f8a9f1aa9b2538288c8d82d Mon Sep 17 00:00:00 2001 From: Matthieu Coudron Date: Thu, 18 Dec 2014 10:46:53 +0100 Subject: [PATCH] Added missing r to IntevalSettings in test_core_modules --- tests/test_core_modules.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_core_modules.py b/tests/test_core_modules.py index 84b40cb..362dab3 100644 --- a/tests/test_core_modules.py +++ b/tests/test_core_modules.py @@ -20,9 +20,9 @@ class IntervalModuleMetaTest(unittest.TestCase): (('option', 'desc'), 'interval')) def test_settings_with_interval(self): - class SettingsInteval(IntervalModule): + class SettingsInterval(IntervalModule): settings = ('option', 'interval') - self.assertEqual(SettingsInteval.settings, ('option', 'interval')) + self.assertEqual(SettingsInterval.settings, ('option', 'interval')) def test_settings_with_interval_desc(self): class SetttingsIntervalDesc(IntervalModule):