aboutsummaryrefslogtreecommitdiff
path: root/tests/main.vala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/main.vala')
-rw-r--r--tests/main.vala6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/main.vala b/tests/main.vala
index a26eca55..d9d52733 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);
}
}
}