--- hunchentoot.orig/test/test.lisp
+++ hunchentoot/test/test.lisp
@@ -93,8 +93,8 @@
 
 (defparameter *test-image*
   (load-time-value
-   (with-open-file (in (make-pathname :name "fz" :type "jpg" :version nil
-                                      :defaults *this-file*)
+   (with-open-file (in (make-pathname :name "debian-logo" :type "png" :version nil
+                                      :directory '(:absolute "usr" "share" "pixmaps"))
                        :element-type 'flex:octet)
      (let ((image-data (make-array (file-length in)
                                    :element-type 'flex:octet)))
@@ -103,7 +103,7 @@
 
 (defun image-ram-page ()
   (setf (content-type)
-          "image/jpeg")
+          "image/png")
   *test-image*)
 
 (let ((count 0))
@@ -504,10 +504,10 @@
              " (user 'nanook', password 'igloo')"))
        (:tr (:td (:a :href "/hunchentoot/code/test.lisp"
                   "The source code of this test")))
-       (:tr (:td (:a :href "/hunchentoot/test/image.jpg"
+       (:tr (:td (:a :href "/hunchentoot/test/image.png"
                   "Binary data, delivered from file")
              " \(a picture)"))
-       (:tr (:td (:a :href "/hunchentoot/test/image-ram.jpg"
+       (:tr (:td (:a :href "/hunchentoot/test/image-ram.png"
                   "Binary data, delivered from RAM")
              " \(same picture)"))
        (:tr (:td (:a :href "/hunchentoot/test/easy-demo.html"
@@ -545,10 +545,10 @@
       (nconc
        (list 'dispatch-easy-handlers
              (create-static-file-dispatcher-and-handler
-              "/hunchentoot/test/image.jpg"
-              (make-pathname :name "fz" :type "jpg" :version nil
-                             :defaults *this-file*)
-              "image/jpeg")
+              "/hunchentoot/test/image.png"
+              (make-pathname :name "debian-logo" :type "png" :version nil
+                             :directory '(:absolute "usr" "share" "pixmaps"))
+              "image/png")
              (create-folder-dispatcher-and-handler
               "/hunchentoot/code/"
               (make-pathname :name nil :type nil :version nil
@@ -560,7 +560,7 @@
                  ("/hunchentoot/test/forbidden.html" forbidden)
                  ("/hunchentoot/test/info.html" info)
                  ("/hunchentoot/test/authorization.html" authorization-page)
-                 ("/hunchentoot/test/image-ram.jpg" image-ram-page)
+                 ("/hunchentoot/test/image-ram.png" image-ram-page)
                  ("/hunchentoot/test/cookie.html" cookie-test)
                  ("/hunchentoot/test/session.html" session-test)
                  ("/hunchentoot/test/parameter_latin1_get.html" parameter-test-latin1-get)
