From b8d9a3654ddcd4c45fd8e051d18db7781f968fb2 Mon Sep 17 00:00:00 2001 From: Andre Anjos <andre.dos.anjos@gmail.com> Date: Fri, 22 Apr 2016 17:09:26 +0200 Subject: [PATCH] [common] Minor fixes to the tearDown method --- beat/web/common/testutils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beat/web/common/testutils.py b/beat/web/common/testutils.py index ccb7683ec..dec0abe87 100644 --- a/beat/web/common/testutils.py +++ b/beat/web/common/testutils.py @@ -43,7 +43,7 @@ class BaseTestCase(TestCase): model = None - def tearDown(): + def tearDown(self): if os.path.exists(settings.CACHE_ROOT): shutil.rmtree(settings.CACHE_ROOT) -- GitLab