diff options
-rw-r--r-- | tests/exiftool-tests.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/exiftool-tests.el b/tests/exiftool-tests.el index b81b257..ecb4f15 100644 --- a/tests/exiftool-tests.el +++ b/tests/exiftool-tests.el @@ -44,8 +44,8 @@ (defmacro with-temp-test-file (test-file temp-file &rest body) "Copy TEST-FILE to temporary file, put path in TEMP-FILE, evaluate BODY." (declare (indent defun)) - `(let ((,temp-file (make-temp-file "exiftool-" - nil (concat "-" ,test-file)))) + `(let ((,temp-file (make-temp-file + "exiftool-" nil (concat "-" ,test-file)))) (copy-file ,test-file ,temp-file t) ,@body (delete-file ,temp-file))) |