diff options
-rw-r--r-- | test/lisp/net/dbus-tests.el | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/test/lisp/net/dbus-tests.el b/test/lisp/net/dbus-tests.el index f75f107dfb6..4d34a1afd0e 100644 --- a/test/lisp/net/dbus-tests.el +++ b/test/lisp/net/dbus-tests.el @@ -1118,10 +1118,12 @@ is in progress." (with-timeout (1 (dbus--test-timeout-handler)) (while (null dbus--test-signal-received) (read-event nil nil 0.1))) - ;; It returns three arguments, interface (a string), + ;; It returns three arguments, "interface" (a string), ;; "changed_properties" (an array of dict entries) and ;; "invalidated_properties" (an array of strings). - (should (equal dbus--test-signal-received `(,dbus--test-interface ((,property ("foo"))) ()))) + (should + (equal dbus--test-signal-received + `(,dbus--test-interface ((,property ("foo"))) ()))) (should (equal |