From a9ac2739f76c39fa96a77185a0308bfd84d31cb2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Gr=C3=A4=C3=9Flin?= Date: Mon, 15 Aug 2016 16:55:10 +0200 Subject: [PATCH] [autotests/libinput] Set a valid sysName by default The autotests are failing on build.kde.org due to the generated DBus object path not being valid. This might be due to sysName having been empty by default. --- autotests/libinput/mock_libinput.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autotests/libinput/mock_libinput.h b/autotests/libinput/mock_libinput.h index cd763a8f73..ee855c9e6f 100644 --- a/autotests/libinput/mock_libinput.h +++ b/autotests/libinput/mock_libinput.h @@ -33,7 +33,7 @@ struct libinput_device { bool tabletTool = false; bool gestureSupported = false; QByteArray name; - QByteArray sysName; + QByteArray sysName = QByteArrayLiteral("event0"); QByteArray outputName; quint32 product = 0; quint32 vendor = 0;