summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristian Kellner <christian@kellner.me>2017-04-03 12:22:28 +0200
committerBastien Nocera <hadess@hadess.net>2017-04-06 14:16:15 +0200
commitc237298297e3015753b0ad237e5e9260b20dd493 (patch)
tree8c107f4cd8f3fb2f99bd2c4ef96fa7bb99875793 /src
parent90aec997ce82afeae0f7e2e51fcd313d260816b3 (diff)
integration-test: Fix path for unparented device
Paths supplied to testbed.add_device() are relative to /sys/devices already and therefore must not start with /sys/devices. This does not change the result of the test. https://bugs.freedesktop.org/show_bug.cgi?id=100539
Diffstat (limited to 'src')
-rwxr-xr-xsrc/linux/integration-test2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/linux/integration-test b/src/linux/integration-test
index 15ccfef..65f141d 100755
--- a/src/linux/integration-test
+++ b/src/linux/integration-test
@@ -1020,7 +1020,7 @@ class Tests(dbusmock.DBusTestCase):
dev = self.testbed.add_device(
'input',
- '/sys/devices/virtual/input/input18',
+ 'virtual/input/input18',
None,
[], [])