From 75f938463e588b9cc3b603446d2670ef3ee44e36 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sun, 13 Apr 2014 14:40:11 -0400 Subject: [PATCH] TW-285 - Fixed unit test structural error. --- test/tw-285.t | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/tw-285.t b/test/tw-285.t index 9ab25e772..bec498c59 100755 --- a/test/tw-285.t +++ b/test/tw-285.t @@ -72,8 +72,10 @@ class BaseTest285(BaseTestCase): os.remove(file) @classmethod - def cleanup(cls): + def finish(cls): os.remove("bug.rc") + for file in glob("*.data"): + os.remove(file) class Test285(BaseTest285):