diff options
author | Michael Albinus <michael.albinus@gmx.de> | 2023-08-06 15:46:58 +0200 |
---|---|---|
committer | Michael Albinus <michael.albinus@gmx.de> | 2023-08-06 15:46:58 +0200 |
commit | de1effd73b4dfa8891e35905d20803b9e76c4a13 (patch) | |
tree | 662e5014b9a7c0077526e31152c1ded66592677b /test/lisp/net | |
parent | 7c7966862bc0126e0f5b8c6d760cc3293d9a87f6 (diff) | |
download | emacs-de1effd73b4dfa8891e35905d20803b9e76c4a13.tar.gz emacs-de1effd73b4dfa8891e35905d20803b9e76c4a13.tar.bz2 emacs-de1effd73b4dfa8891e35905d20803b9e76c4a13.zip |
; Fix last change
Diffstat (limited to 'test/lisp/net')
-rw-r--r-- | test/lisp/net/tramp-tests.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/lisp/net/tramp-tests.el b/test/lisp/net/tramp-tests.el index f4938cf9a01..31d36f81740 100644 --- a/test/lisp/net/tramp-tests.el +++ b/test/lisp/net/tramp-tests.el @@ -2687,7 +2687,9 @@ This checks also `file-name-as-directory', `file-name-directory', (let ((bfcs buffer-file-coding-system)) (should (buffer-modified-p)) (should (null (save-buffer))) - (should (eq buffer-file-coding-system bfcs))))) + (should + (eq (coding-system-get buffer-file-coding-system :mime-charset) + (coding-system-get bfcs :mime-charset)))))) ;; Cleanup. (ignore-errors (delete-file tmp-name)))))) |