]> git.eshelyaron.com Git - emacs.git/commitdiff
Cleanup in files-tests.el
authorMichael Albinus <michael.albinus@gmx.de>
Mon, 18 Sep 2017 08:00:17 +0000 (10:00 +0200)
committerMichael Albinus <michael.albinus@gmx.de>
Mon, 18 Sep 2017 08:00:17 +0000 (10:00 +0200)
* test/lisp/files-tests.el (files-tests--make-directory)
(files-tests--copy-directory): Cleanup temporary directories.

test/lisp/files-tests.el

index 3117ea697ec0fe3d1e2378faf87279dc480fbef1..f2a9a321808f9691e8ea7e2372110b7c64b77f10 100644 (file)
@@ -363,7 +363,8 @@ be invoked with the right arguments."
     (should-not (make-directory subdir1))
     (should-not (make-directory subdir2 t))
     (should-error (make-directory a/b))
-    (should-not (make-directory a/b t))))
+    (should-not (make-directory a/b t))
+    (delete-directory dir 'recursive)))
 
 (ert-deftest files-test-no-file-write-contents ()
   "Test that `write-contents-functions' permits saving a file.
@@ -402,7 +403,8 @@ name (Bug#28412)."
     (make-directory source)
     (write-region "" nil file)
     (copy-directory source dest t t t)
-    (should (file-exists-p (concat dest "file")))))
+    (should (file-exists-p (concat dest "file")))
+    (delete-directory dir 'recursive)))
 
 (provide 'files-tests)
 ;;; files-tests.el ends here