diff options
author | Charles Kerr <charles.kerr@canonical.com> | 2017-05-15 15:01:23 +0200 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2017-05-15 15:01:50 +0200 |
commit | bd1a508aeb9e498dd782678da420d5baf639b4c0 (patch) | |
tree | 1b76d4f9435d12a34ab7241535bd673b082cc03f /tests/test-notify.cc | |
parent | dbfed3a9b70091667233b884d5a7fa3098f4d104 (diff) | |
download | ayatana-indicator-power-bd1a508aeb9e498dd782678da420d5baf639b4c0.tar.gz ayatana-indicator-power-bd1a508aeb9e498dd782678da420d5baf639b4c0.tar.bz2 ayatana-indicator-power-bd1a508aeb9e498dd782678da420d5baf639b4c0.zip |
Make device with power supply has higher sorting priority. (LP: #1100546)
Diffstat (limited to 'tests/test-notify.cc')
-rw-r--r-- | tests/test-notify.cc | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/tests/test-notify.cc b/tests/test-notify.cc index acab34f..f8a5517 100644 --- a/tests/test-notify.cc +++ b/tests/test-notify.cc @@ -191,7 +191,8 @@ TEST_F(NotifyFixture, PercentageToLevel) UP_DEVICE_KIND_BATTERY, 50.0, UP_DEVICE_STATE_DISCHARGING, - 30); + 30, + TRUE); // confirm that the power levels trigger at the right percentages for (int i=100; i>=0; --i) @@ -269,7 +270,8 @@ TEST_F(NotifyFixture, LevelsDuringBatteryDrain) UP_DEVICE_KIND_BATTERY, 50.0, UP_DEVICE_STATE_DISCHARGING, - 30); + 30, + TRUE); // set up a notifier and give it the battery so changing the battery's // charge should show up on the bus. @@ -341,7 +343,8 @@ TEST_F(NotifyFixture, EventsThatChangeNotifications) UP_DEVICE_KIND_BATTERY, percent_low + 1.0, UP_DEVICE_STATE_DISCHARGING, - 30); + 30, + TRUE); // set up a notifier and give it the battery so changing the battery's // charge should show up on the bus. |