diff options
author | Ted Gould <ted@gould.cx> | 2015-02-12 09:15:42 -0600 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2015-02-12 09:15:42 -0600 |
commit | e50350bd0bd5f85cf57cc1d42e6fb34c687063a4 (patch) | |
tree | 3b567a2326868f5e0255b649000d66e1e71a17bd /tests/volume-control-mock.vala | |
parent | af70cff9cef989be42968b11d356e8da09635c4d (diff) | |
download | ayatana-indicator-sound-e50350bd0bd5f85cf57cc1d42e6fb34c687063a4.tar.gz ayatana-indicator-sound-e50350bd0bd5f85cf57cc1d42e6fb34c687063a4.tar.bz2 ayatana-indicator-sound-e50350bd0bd5f85cf57cc1d42e6fb34c687063a4.zip |
Setting the default stream
Diffstat (limited to 'tests/volume-control-mock.vala')
-rw-r--r-- | tests/volume-control-mock.vala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/volume-control-mock.vala b/tests/volume-control-mock.vala index e1b6fc1..4de5975 100644 --- a/tests/volume-control-mock.vala +++ b/tests/volume-control-mock.vala @@ -20,7 +20,7 @@ public class VolumeControlMock : VolumeControl { - public string mock_stream { get; set; } + public string mock_stream { get; set; default = "multimedia"; } public override string stream { get { return mock_stream; } } public override bool ready { get; set; } public override bool active_mic { get; set; } |