From e0c18c3a4b932d09921025e6190130414396ab85 Mon Sep 17 00:00:00 2001 From: Eli Barzilay Date: Wed, 23 Jun 2010 06:18:41 -0400 Subject: [PATCH] Remove the temporary file when done with it. --- collects/tests/racket/file.rktl | 1 + 1 file changed, 1 insertion(+) diff --git a/collects/tests/racket/file.rktl b/collects/tests/racket/file.rktl index 5c4d840c70..806ec3d886 100644 --- a/collects/tests/racket/file.rktl +++ b/collects/tests/racket/file.rktl @@ -403,6 +403,7 @@ (write-char #\x out-p) (close-output-port out-p) (test 'hx with-input-from-file tempfilename read) +(delete-file tempfilename) (arity-test call-with-input-file 2 2) (arity-test call-with-output-file 2 2)