diff options
author | Charles Kerr <charles.kerr@canonical.com> | 2013-08-23 17:56:56 +0000 |
---|---|---|
committer | Tarmac <Unknown> | 2013-08-23 17:56:56 +0000 |
commit | 2e46eb4850c827e76aa4e75f9e7c80f0406b02db (patch) | |
tree | a45cb71731ba27ff4d92715f87249babd15c8170 /tests/test-device.cc | |
parent | e079d4b70552a9cc5a44d6c8df2153cbcec1de78 (diff) | |
parent | 90f4785b783466015127e1d37627ee81de182f2f (diff) | |
download | ayatana-indicator-power-2e46eb4850c827e76aa4e75f9e7c80f0406b02db.tar.gz ayatana-indicator-power-2e46eb4850c827e76aa4e75f9e7c80f0406b02db.tar.bz2 ayatana-indicator-power-2e46eb4850c827e76aa4e75f9e7c80f0406b02db.zip |
Don't show the time remaining for a discharging battery if it exceeds 24 hours because it's probably an erroneous time estimate. Fixes: https://bugs.launchpad.net/bugs/1216030.
Approved by Ted Gould, PS Jenkins bot.
Diffstat (limited to 'tests/test-device.cc')
-rw-r--r-- | tests/test-device.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test-device.cc b/tests/test-device.cc index 130ef16..0ccd8d1 100644 --- a/tests/test-device.cc +++ b/tests/test-device.cc @@ -523,12 +523,12 @@ TEST_F(DeviceTest, Labels) "(50%)", "Battery (1 hour 1 minute left, 50%)"); - // discharging, > 12 hours left - // we don't show the clock time when > 12 hours dischargin + // discharging, > 24 hours left + // we don't show the clock time when > 24 hours discharging g_object_set (o, INDICATOR_POWER_DEVICE_KIND, UP_DEVICE_KIND_BATTERY, INDICATOR_POWER_DEVICE_STATE, UP_DEVICE_STATE_DISCHARGING, INDICATOR_POWER_DEVICE_PERCENTAGE, 50.0, - INDICATOR_POWER_DEVICE_TIME, guint64(60*60*13), + INDICATOR_POWER_DEVICE_TIME, guint64(60*60*25), NULL); check_label (device, "Battery"); check_header (device, "(50%)", |