Reactivate cleanup of temp files
diff --git a/OpenSSL/test/util.py b/OpenSSL/test/util.py
index b8be91d..12e5eb8 100644
--- a/OpenSSL/test/util.py
+++ b/OpenSSL/test/util.py
@@ -163,7 +163,7 @@
         Subclasses must invoke this method if they override it or the
         cleanup will not occur.
         """
-        if False and self._temporaryFiles is not None:
+        if self._temporaryFiles is not None:
             for temp in self._temporaryFiles:
                 if os.path.isdir(temp):
                     shutil.rmtree(temp)