diff options
author | Jared Finder <jared@finder.org> | 2020-10-24 08:25:06 -0700 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2020-10-31 09:57:00 +0200 |
commit | 2a6337a6c4dd00fbe00298bcec48a53a6faf87eb (patch) | |
tree | 75877f307773b0939554f79f82d14409a8084f84 /test/lisp/xt-mouse-tests.el | |
parent | 8800d8c640276b41f1a9f46397e43e2f02b6b664 (diff) | |
download | emacs-2a6337a6c4dd00fbe00298bcec48a53a6faf87eb.tar.gz |
Fix unit tests broken by changes to xt-mouse.el
* test/lisp/xt-mouse-tests.el (xt-mouse-tracking-basic)
(xt-mouse-tracking-utf-8): Update expected escape sequence.
Diffstat (limited to 'test/lisp/xt-mouse-tests.el')
-rw-r--r-- | test/lisp/xt-mouse-tests.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/lisp/xt-mouse-tests.el b/test/lisp/xt-mouse-tests.el index 61bd7590183..12840df13fe 100644 --- a/test/lisp/xt-mouse-tests.el +++ b/test/lisp/xt-mouse-tests.el @@ -53,9 +53,9 @@ (ert-deftest xt-mouse-tracking-basic () (should (equal (xterm-mouse-tracking-enable-sequence) - "\e[?1000h\e[?1002h\e[?1006h")) + "\e[?1000h\e[?1003h\e[?1006h")) (should (equal (xterm-mouse-tracking-disable-sequence) - "\e[?1006l\e[?1002l\e[?1000l")) + "\e[?1006l\e[?1003l\e[?1000l")) (with-xterm-mouse-mode (should xterm-mouse-mode) (should (terminal-parameter nil 'xterm-mouse-mode)) @@ -73,9 +73,9 @@ (ert-deftest xt-mouse-tracking-utf-8 () (let ((xterm-mouse-utf-8 t)) (should (equal (xterm-mouse-tracking-enable-sequence) - "\e[?1000h\e[?1002h\e[?1005h\e[?1006h")) + "\e[?1000h\e[?1003h\e[?1005h\e[?1006h")) (should (equal (xterm-mouse-tracking-disable-sequence) - "\e[?1006l\e[?1005l\e[?1002l\e[?1000l")) + "\e[?1006l\e[?1005l\e[?1003l\e[?1000l")) (with-xterm-mouse-mode (should xterm-mouse-mode) (should (terminal-parameter nil 'xterm-mouse-mode)) |