summaryrefslogtreecommitdiff
path: root/test/lisp/image-tests.el
diff options
context:
space:
mode:
authorBasil L. Contovounesios <contovob@tcd.ie>2022-04-02 19:40:05 +0300
committerBasil L. Contovounesios <contovob@tcd.ie>2022-04-02 19:41:12 +0300
commit98775e6cf6ca600c6c8e2ef1fdd1d1bc65c65098 (patch)
treedbc197b1ecd8b8d558191051e35dad09ab194c64 /test/lisp/image-tests.el
parent781c43de3d017323b945088cdb39031d51a5e6ef (diff)
downloademacs-98775e6cf6ca600c6c8e2ef1fdd1d1bc65c65098.tar.gz
emacs-98775e6cf6ca600c6c8e2ef1fdd1d1bc65c65098.tar.bz2
emacs-98775e6cf6ca600c6c8e2ef1fdd1d1bc65c65098.zip
; Pacify obsoletion warnings in image-tests.el.
Diffstat (limited to 'test/lisp/image-tests.el')
-rw-r--r--test/lisp/image-tests.el7
1 files changed, 4 insertions, 3 deletions
diff --git a/test/lisp/image-tests.el b/test/lisp/image-tests.el
index 6abfcfedcf4..2b3e818d720 100644
--- a/test/lisp/image-tests.el
+++ b/test/lisp/image-tests.el
@@ -75,9 +75,10 @@
(should-not (find-image '((:type png :file "does-not-exist-foo-bar.png")))))
(ert-deftest image-type-from-file-name ()
- (should (eq (image-type-from-file-name "foo.jpg") 'jpeg))
- (should (eq (image-type-from-file-name "foo.png") 'png))
- (should (eq (image-type-from-file-name "foo.webp") 'webp)))
+ (with-suppressed-warnings ((obsolete image-type-from-file-name))
+ (should (eq (image-type-from-file-name "foo.jpg") 'jpeg))
+ (should (eq (image-type-from-file-name "foo.png") 'png))
+ (should (eq (image-type-from-file-name "foo.webp") 'webp))))
(ert-deftest image-type/from-filename ()
;; On emba, `image-types' and `image-load-path' do not exist.