diff options
Diffstat (limited to 'test')
| -rw-r--r-- | test/lisp/emacs-lisp/rx-tests.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/lisp/emacs-lisp/rx-tests.el b/test/lisp/emacs-lisp/rx-tests.el index 76dcf419428..d4524e5a251 100644 --- a/test/lisp/emacs-lisp/rx-tests.el +++ b/test/lisp/emacs-lisp/rx-tests.el | |||
| @@ -184,8 +184,8 @@ | |||
| 184 | "ab"))) | 184 | "ab"))) |
| 185 | 185 | ||
| 186 | (ert-deftest rx-atoms () | 186 | (ert-deftest rx-atoms () |
| 187 | (should (equal (rx anything) | 187 | (should (equal (rx anychar anything) |
| 188 | ".\\|\n")) | 188 | "\\(?:.\\|\n\\)\\(?:.\\|\n\\)")) |
| 189 | (should (equal (rx line-start not-newline nonl any line-end) | 189 | (should (equal (rx line-start not-newline nonl any line-end) |
| 190 | "^...$")) | 190 | "^...$")) |
| 191 | (should (equal (rx bol string-start string-end buffer-start buffer-end | 191 | (should (equal (rx bol string-start string-end buffer-start buffer-end |