diff options
author | Charles Kerr <charles.kerr@canonical.com> | 2014-07-29 10:05:20 -0500 |
---|---|---|
committer | Charles Kerr <charles.kerr@canonical.com> | 2014-07-29 10:05:20 -0500 |
commit | a402b61b0acc81a808f9cb353e0df81bb9b14de0 (patch) | |
tree | a645f3a125777544ea93b488d000c6fc368338ed /tests | |
parent | b04239b60c7684a0ee0f5dccbeda0d00540c0ee9 (diff) | |
download | ayatana-indicator-power-a402b61b0acc81a808f9cb353e0df81bb9b14de0.tar.gz ayatana-indicator-power-a402b61b0acc81a808f9cb353e0df81bb9b14de0.tar.bz2 ayatana-indicator-power-a402b61b0acc81a808f9cb353e0df81bb9b14de0.zip |
sync unit tests.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test-device.cc | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/tests/test-device.cc b/tests/test-device.cc index 81e8a22..85ba237 100644 --- a/tests/test-device.cc +++ b/tests/test-device.cc @@ -422,10 +422,10 @@ TEST_F(DeviceTest, IconNames) INDICATOR_POWER_DEVICE_PERCENTAGE, 25.0, INDICATOR_POWER_DEVICE_TIME, (guint64)(60*60), NULL); - g_string_append_printf (expected, "%s-040;", kind_str); - g_string_append_printf (expected, "gpm-%s-040;", kind_str); - g_string_append_printf (expected, "%s-good-symbolic;", kind_str); - g_string_append_printf (expected, "%s-good", kind_str); + g_string_append_printf (expected, "%s-020;", kind_str); + g_string_append_printf (expected, "gpm-%s-020;", kind_str); + g_string_append_printf (expected, "%s-low-symbolic;", kind_str); + g_string_append_printf (expected, "%s-low", kind_str); check_icon_names (device, expected->str); g_string_truncate (expected, 0); @@ -448,10 +448,10 @@ TEST_F(DeviceTest, IconNames) INDICATOR_POWER_DEVICE_PERCENTAGE, 5.0, INDICATOR_POWER_DEVICE_TIME, (guint64)(60*60), NULL); - g_string_append_printf (expected, "%s-040;", kind_str); - g_string_append_printf (expected, "gpm-%s-040;", kind_str); - g_string_append_printf (expected, "%s-good-symbolic;", kind_str); - g_string_append_printf (expected, "%s-good", kind_str); + g_string_append_printf (expected, "%s-000;", kind_str); + g_string_append_printf (expected, "gpm-%s-000;", kind_str); + g_string_append_printf (expected, "%s-caution-symbolic;", kind_str); + g_string_append_printf (expected, "%s-caution", kind_str); check_icon_names (device, expected->str); g_string_truncate (expected, 0); |