From afe9f9ba0ecf7138b2f9ede75c2fbea953d8550c Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Thu, 24 Jan 2013 19:08:47 +0000 Subject: [PATCH] fix test --- tests/functional/openlp_core_ui/test_starttimedialog.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/functional/openlp_core_ui/test_starttimedialog.py b/tests/functional/openlp_core_ui/test_starttimedialog.py index 20332a225..c4b175106 100644 --- a/tests/functional/openlp_core_ui/test_starttimedialog.py +++ b/tests/functional/openlp_core_ui/test_starttimedialog.py @@ -60,6 +60,6 @@ class TestStartTimeDialog(TestCase): #self.form.exec_() # THEN the following values are returned - #self.assertEqual(self.form.hourSpinBox.value(), 1) - #self.assertEqual(self.form.minuteSpinBox.value(), 1) - #self.assertEqual(self.form.secondSpinBox.value(), 1) \ No newline at end of file + self.assertEqual(self.form.hourSpinBox.value(), 0) + self.assertEqual(self.form.minuteSpinBox.value(), 0) + self.assertEqual(self.form.secondSpinBox.value(), 0) \ No newline at end of file