From c1051280158c185830d7a9ca326d6022f279c324 Mon Sep 17 00:00:00 2001 From: Vasileios Karakasis Date: Sat, 21 Sep 2019 16:16:02 +0200 Subject: [PATCH] Fix unittests leaving stale files behind --- unittests/test_pipeline.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unittests/test_pipeline.py b/unittests/test_pipeline.py index ea5d93b008..7faa8f8c1c 100644 --- a/unittests/test_pipeline.py +++ b/unittests/test_pipeline.py @@ -48,7 +48,7 @@ def setUp(self): # Set runtime prefix rt.runtime().resources.prefix = tempfile.mkdtemp(dir='unittests') - def _tearDown(self): + def tearDown(self): os_ext.rmtree(rt.runtime().resources.prefix) os_ext.rmtree('.rfm_testing', ignore_errors=True)