From 673de16aad90c2eba0c0b6f64519f883690dfb8a Mon Sep 17 00:00:00 2001 From: Martyn Gigg Date: Fri, 29 Mar 2013 08:53:17 +0000 Subject: [PATCH] Put back file removal. Refs #6812 --- .../Mantid/Framework/Algorithms/test/GeneratePythonScriptTest.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Code/Mantid/Framework/Algorithms/test/GeneratePythonScriptTest.h b/Code/Mantid/Framework/Algorithms/test/GeneratePythonScriptTest.h index 6efa04d9aa6e..baac9dabbcc7 100644 --- a/Code/Mantid/Framework/Algorithms/test/GeneratePythonScriptTest.h +++ b/Code/Mantid/Framework/Algorithms/test/GeneratePythonScriptTest.h @@ -111,7 +111,7 @@ class GeneratePythonScriptTest : public CxxTest::TestSuite } file.close(); - //if (Poco::File(filename).exists()) Poco::File(filename).remove(); + if (Poco::File(filename).exists()) Poco::File(filename).remove(); } };