[gnome-settings-daemon] power: Print the expected and gotten values in failing tests
- From: Bastien Nocera <hadess src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-settings-daemon] power: Print the expected and gotten values in failing tests
- Date: Wed, 17 Apr 2013 14:10:30 +0000 (UTC)
commit c6dd845b8d441822891ff5712f7be8b9b5a5037b
Author: Bastien Nocera <hadess hadess net>
Date: Tue Apr 16 15:01:20 2013 +0200
power: Print the expected and gotten values in failing tests
plugins/power/test.py | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
---
diff --git a/plugins/power/test.py b/plugins/power/test.py
index dc6cfdd..308c3e8 100755
--- a/plugins/power/test.py
+++ b/plugins/power/test.py
@@ -342,13 +342,13 @@ class PowerPluginTest(gsdtestcase.GSDTestCase):
# blank is supposed to happen straight away
self.check_blank(2)
# check that the brightness is at the minimum
- self.assertTrue(self.get_brightness() == 0, 'incorrect blank brightness')
+ self.assertTrue(self.get_brightness() == 0, 'incorrect blank brightness (%d != 0)' %
(self.get_brightness()))
# wiggle the mouse now and check for unblank; this is expected to pop up
# the locked screen saver
self.reset_idle_timer()
self.check_unblank(2)
- self.assertTrue(self.get_brightness() == gsdpowerconstants.GSD_MOCK_DEFAULT_BRIGHTNESS , 'incorrect
unblanked brightness')
+ self.assertTrue(self.get_brightness() == gsdpowerconstants.GSD_MOCK_DEFAULT_BRIGHTNESS , 'incorrect
unblanked brightness (%d != %d)' % (self.get_brightness(), gsdpowerconstants.GSD_MOCK_DEFAULT_BRIGHTNESS))
# Check for no blank before the normal blank timeout
self.check_no_blank(gsdpowerconstants.SCREENSAVER_TIMEOUT_BLANK - 4)
@@ -356,7 +356,7 @@ class PowerPluginTest(gsdtestcase.GSDTestCase):
# and check for blank after the blank timeout
self.check_blank(10)
- self.assertTrue(self.get_brightness() == 0, 'incorrect blank brightness')
+ self.assertTrue(self.get_brightness() == 0, 'incorrect blank brightness (%d != 0)' %
(self.get_brightness()))
# Drop inhibitor
self.obj_session_mgr.Uninhibit(dbus.UInt32(inhibit_id))
@@ -527,7 +527,7 @@ class PowerPluginTest(gsdtestcase.GSDTestCase):
# Wait and check we're not idle, but dimmed
self.check_dim(gsdpowerconstants.MINIMUM_IDLE_DIM_DELAY)
- self.assertTrue(self.get_brightness() == dim_level, 'incorrect dim brightness')
+ self.assertTrue(self.get_brightness() == dim_level, 'incorrect dim brightness (%d != %d)' %
(self.get_brightness(), dim_level))
self.assertEqual(self.get_status(), gsdpowerenums.GSM_PRESENCE_STATUS_AVAILABLE)
@@ -547,7 +547,7 @@ class PowerPluginTest(gsdtestcase.GSDTestCase):
time.sleep(1)
# And check that we have the pre-dim brightness
- self.assertTrue(self.get_brightness() == gsdpowerconstants.GSD_MOCK_DEFAULT_BRIGHTNESS , 'incorrect
unblanked brightness')
+ self.assertTrue(self.get_brightness() == gsdpowerconstants.GSD_MOCK_DEFAULT_BRIGHTNESS , 'incorrect
unblanked brightness (%d != %d)' % (self.get_brightness(), gsdpowerconstants.GSD_MOCK_DEFAULT_BRIGHTNESS))
def test_no_suspend_lid_close(self):
'''Check that we don't suspend on lid close with an external monitor'''
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]