From 4770c5956c350eab384d3f6cfba297cc3a468a05 Mon Sep 17 00:00:00 2001 From: jfkirk Date: Thu, 10 Sep 2015 11:15:13 -0400 Subject: [PATCH] TST: Fixes modelling test tearDown --- tests/modelling/test_modelling_algo.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/tests/modelling/test_modelling_algo.py b/tests/modelling/test_modelling_algo.py index 5a7b20ee..15dac0c8 100644 --- a/tests/modelling/test_modelling_algo.py +++ b/tests/modelling/test_modelling_algo.py @@ -105,6 +105,7 @@ class FFCAlgorithmTestCase(TestCase): @classmethod def tearDownClass(cls): del cls.env + cls.tempdir.cleanup() @classmethod def create_bar_reader(cls, tempdir): @@ -151,10 +152,6 @@ class FFCAlgorithmTestCase(TestCase): writer.write(splits, mergers, dividends) return SQLiteAdjustmentReader(dbpath) - @classmethod - def tearDownClass(cls): - cls.tempdir.cleanup() - def make_source(self): return Panel(self.raw_data).tz_localize('UTC', axis=1)