diff options
| author | Po Lu | 2024-06-28 14:46:53 +0800 |
|---|---|---|
| committer | Po Lu | 2024-06-28 14:46:53 +0800 |
| commit | 5c09557df3c880cd5286ecfea535f96df1dfd8d5 (patch) | |
| tree | 603ea2137a25de8366d3cc169c5d4cb25f1687b3 | |
| parent | b595b4598e7b3dabe4d45895f5580c9a351f2885 (diff) | |
| parent | 6f9f9a2155542d6452847a9311772c399298c4c8 (diff) | |
| download | emacs-5c09557df3c880cd5286ecfea535f96df1dfd8d5.tar.gz emacs-5c09557df3c880cd5286ecfea535f96df1dfd8d5.zip | |
Merge from savannah/emacs-30
6f9f9a21555 Fix two tests for --without-all build
| -rw-r--r-- | test/src/image-tests.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/src/image-tests.el b/test/src/image-tests.el index 24e60fb100f..e321b80e7a8 100644 --- a/test/src/image-tests.el +++ b/test/src/image-tests.el | |||
| @@ -49,11 +49,11 @@ | |||
| 49 | 49 | ||
| 50 | (ert-deftest image-tests-image-mask-p/error-on-nongraphical-display () | 50 | (ert-deftest image-tests-image-mask-p/error-on-nongraphical-display () |
| 51 | (skip-when (display-images-p)) | 51 | (skip-when (display-images-p)) |
| 52 | (should-error (image-mask-p (cdr (assq 'xpm image-tests--images))))) | 52 | (should-error (image-mask-p (cdr (assq 'xbm image-tests--images))))) |
| 53 | 53 | ||
| 54 | (ert-deftest image-tests-image-metadata/error-on-nongraphical-display () | 54 | (ert-deftest image-tests-image-metadata/error-on-nongraphical-display () |
| 55 | (skip-when (display-images-p)) | 55 | (skip-when (display-images-p)) |
| 56 | (should-error (image-metadata (cdr (assq 'xpm image-tests--images))))) | 56 | (should-error (image-metadata (cdr (assq 'xbm image-tests--images))))) |
| 57 | 57 | ||
| 58 | (ert-deftest image-tests-imagemagick-types () | 58 | (ert-deftest image-tests-imagemagick-types () |
| 59 | (skip-unless (fboundp 'imagemagick-types)) | 59 | (skip-unless (fboundp 'imagemagick-types)) |