[gnome-continuous] gnome-shell-valgrind: Try to fix script
- From: Jasper St. Pierre <jstpierre src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-continuous] gnome-shell-valgrind: Try to fix script
- Date: Tue, 30 Sep 2014 14:16:51 +0000 (UTC)
commit d29bcf92559cad56c4e13454f1322b902a61735a
Author: Jasper St. Pierre <jstpierre mecheye net>
Date: Tue Sep 30 08:13:42 2014 -0600
gnome-shell-valgrind: Try to fix script
At some point, g_dbus_proxy_new_finish became a constructor method, and
so the new_finish here started failing. Let's hope this fixes it.
src/tests/gnome-shell-valgrind | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/src/tests/gnome-shell-valgrind b/src/tests/gnome-shell-valgrind
index 92c0948..420f605 100644
--- a/src/tests/gnome-shell-valgrind
+++ b/src/tests/gnome-shell-valgrind
@@ -31,7 +31,7 @@ let shellProxy = null;
// for 10 seconds later.
function onShellProxy(obj, result) {
print("Shell proxy created");
- shellProxy = obj.new_finish(result);
+ shellProxy = Gio.DBusProxy.new_finish(result);
let delayus = 5 * imports.gi.GLib.USEC_PER_SEC;
let result;
for (let i = 0; i < 30; i++) {
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]