From: Philip Withnall Date: Mon, 5 Jan 2026 23:21:11 +0000 (+0000) Subject: test: Fix a variable typo in test-dbus-launch-x11.sh X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4125f73b61ad35445d0cc55a853e52f8376582d7;p=thirdparty%2Fdbus.git test: Fix a variable typo in test-dbus-launch-x11.sh This would have caused the test to fail if `DBUS_TEST_DBUS_MONITOR` was not specified in the environment. Handily, it is always set by the `meson.build` file. Spotted by jvpeetz. Signed-off-by: Philip Withnall Fixes: #424 --- diff --git a/test/test-dbus-launch-x11.sh b/test/test-dbus-launch-x11.sh index e57831e08..8769360f6 100755 --- a/test/test-dbus-launch-x11.sh +++ b/test/test-dbus-launch-x11.sh @@ -29,7 +29,7 @@ set -x export DBUS_DEBUG_OUTPUT=1 echo "# dbus-daemon binary: ${DBUS_TEST_DAEMON:=dbus-daemon}" echo "# dbus-launch binary: ${DBUS_TEST_DBUS_LAUNCH:=dbus-launch}" -echo "# dbus-monitor binary: ${DBUS_TEST_DBUS_LAUNCH:=dbus-monitor}" +echo "# dbus-monitor binary: ${DBUS_TEST_DBUS_MONITOR:=dbus-monitor}" echo "# dbus-send binary: ${DBUS_TEST_DBUS_SEND:=dbus-send}" echo "# dbus-uuidgen binary: ${DBUS_TEST_DBUS_UUIDGEN:=dbus-uuidgen}"