diff options
Diffstat (limited to 'tests/volume-control-mock.vala')
-rw-r--r-- | tests/volume-control-mock.vala | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/volume-control-mock.vala b/tests/volume-control-mock.vala index dc11fba..7f958b2 100644 --- a/tests/volume-control-mock.vala +++ b/tests/volume-control-mock.vala @@ -40,7 +40,9 @@ public class VolumeControlMock : VolumeControl } - public VolumeControlMock() { + public VolumeControlMock(IndicatorSound.Options options) { + base(options); + ready = true; this.notify["mock-stream"].connect(() => this.notify_property("stream")); this.notify["mock-high-volume"].connect(() => this.notify_property("high-volume")); |