diff options
author | Charles Kerr <charles.kerr@canonical.com> | 2014-06-26 22:13:13 -0500 |
---|---|---|
committer | Charles Kerr <charles.kerr@canonical.com> | 2014-06-26 22:13:13 -0500 |
commit | 8bb09ca0225886c18e351d3c6156521ed479edd1 (patch) | |
tree | cd5e30c6fc5531f0ad1efb711957a3d951e4a66a /tests/test-exporter.cpp | |
parent | c5081444f4f493dc386012bcb99d2430fe26dc5a (diff) | |
download | ayatana-indicator-datetime-8bb09ca0225886c18e351d3c6156521ed479edd1.tar.gz ayatana-indicator-datetime-8bb09ca0225886c18e351d3c6156521ed479edd1.tar.bz2 ayatana-indicator-datetime-8bb09ca0225886c18e351d3c6156521ed479edd1.zip |
Design prefers to have a volume slider instead of presets, so remove the AlarmVolume enum and replace it with an int range.
Diffstat (limited to 'tests/test-exporter.cpp')
-rw-r--r-- | tests/test-exporter.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test-exporter.cpp b/tests/test-exporter.cpp index 3f502cf..e947740 100644 --- a/tests/test-exporter.cpp +++ b/tests/test-exporter.cpp @@ -183,7 +183,7 @@ TEST_F(ExporterFixture, AlarmProperties) **** Try changing the Settings -- do the DBus properties change to match it? ***/ - auto expected_volume = ALARM_VOLUME_VERY_LOUD; + auto expected_volume = 1; int expected_duration = 60; const char * expected_sound = "/tmp/foo.wav"; settings->alarm_volume.set(expected_volume); @@ -210,7 +210,7 @@ TEST_F(ExporterFixture, AlarmProperties) **** Try chaning the DBus properties -- do the Settings change to match it? ***/ - expected_volume = ALARM_VOLUME_VERY_QUIET; + expected_volume = 100; expected_duration = 30; expected_sound = "/tmp/bar.wav"; g_object_set(proxy, SOUND_PROP, expected_sound, |