summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorBastien Nocera <hadess@hadess.net>2018-03-02 17:19:20 +0100
committerBastien Nocera <hadess@hadess.net>2018-03-02 19:07:56 +0100
commitbea6b7dff9e008d6de3a0a68aeb986bb53494fb8 (patch)
tree01640cf2446313fb444e2052cc28c45d3c657804 /tests
parent8289d7b2905dbcb46b82919f8d29f28ab8a091cf (diff)
downloadgnome-settings-daemon-bea6b7dff9e008d6de3a0a68aeb986bb53494fb8.tar.gz
tests: Fix mutter logs always being empty
Copy/paste error in the logs meant we wrote to the wrong location.
Diffstat (limited to 'tests')
-rw-r--r--tests/gsdtestcase.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/gsdtestcase.py b/tests/gsdtestcase.py
index 29e81d7e..48659b72 100644
--- a/tests/gsdtestcase.py
+++ b/tests/gsdtestcase.py
@@ -173,7 +173,7 @@ class GSDTestCase(dbusmock.DBusTestCase):
# See https://gitlab.gnome.org/GNOME/mutter/merge_requests/15
os.environ['XDG_SESSION_TYPE'] = 'x11'
klass.mutter = subprocess.Popen(['mutter', '--x11'],
- stdout=klass.monitor_log,
+ stdout=klass.mutter_log,
stderr=subprocess.STDOUT)
def stop_mutter(klass):