diff options
Diffstat (limited to 'tests/main.vala')
-rw-r--r-- | tests/main.vala | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/main.vala b/tests/main.vala index c3997520..6bbcc61a 100644 --- a/tests/main.vala +++ b/tests/main.vala @@ -31,12 +31,12 @@ public class Service : Object { } public void execute (string command) { - this._command = command; + _command = command; - var pspec = this.get_class ().find_property ("command"); + var pspec = get_class ().find_property ("command"); if (pspec != null) { - this.notify["command"] ((!) pspec); + notify["command"] ((!) pspec); } } } |