* inotify-test.el (inotify-file-watch-simple): Delete temp-file when done.

This commit is contained in:
Glenn Morris 2013-07-23 15:54:01 -04:00
parent 66878244eb
commit 97afc49a1a
2 changed files with 6 additions and 1 deletions

View file

@ -1,5 +1,8 @@
2013-07-23 Glenn Morris <rgm@gnu.org>
* automated/inotify-test.el (inotify-file-watch-simple):
Delete temp-file when done.
* automated/subword-tests.el: Require subword.
2013-07-22 Stefan Monnier <monnier@iro.umontreal.ca>

View file

@ -56,8 +56,10 @@
(insert "Foo\n"))
(sit-for 5) ;; Hacky. Wait for 5s until events are processed
(should (> events 0)))
(inotify-rm-watch wd)))))
(inotify-rm-watch wd)
(delete-file temp-file)))))
)
(provide 'inotify-tests)
;;; inotify-tests.el ends here.