diff options
| author | Michael Albinus | 2023-08-06 15:46:58 +0200 |
|---|---|---|
| committer | Michael Albinus | 2023-08-06 15:46:58 +0200 |
| commit | de1effd73b4dfa8891e35905d20803b9e76c4a13 (patch) | |
| tree | 662e5014b9a7c0077526e31152c1ded66592677b | |
| parent | 7c7966862bc0126e0f5b8c6d760cc3293d9a87f6 (diff) | |
| download | emacs-de1effd73b4dfa8891e35905d20803b9e76c4a13.tar.gz emacs-de1effd73b4dfa8891e35905d20803b9e76c4a13.zip | |
; Fix last change
| -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', | |||
| 2687 | (let ((bfcs buffer-file-coding-system)) | 2687 | (let ((bfcs buffer-file-coding-system)) |
| 2688 | (should (buffer-modified-p)) | 2688 | (should (buffer-modified-p)) |
| 2689 | (should (null (save-buffer))) | 2689 | (should (null (save-buffer))) |
| 2690 | (should (eq buffer-file-coding-system bfcs))))) | 2690 | (should |
| 2691 | (eq (coding-system-get buffer-file-coding-system :mime-charset) | ||
| 2692 | (coding-system-get bfcs :mime-charset)))))) | ||
| 2691 | 2693 | ||
| 2692 | ;; Cleanup. | 2694 | ;; Cleanup. |
| 2693 | (ignore-errors (delete-file tmp-name)))))) | 2695 | (ignore-errors (delete-file tmp-name)))))) |