From e49c73cf9ee9d5009e35a9aacd23d965563193e4 Mon Sep 17 00:00:00 2001 From: Chris Jones Date: Tue, 23 Sep 2008 16:18:00 +0100 Subject: [PATCH] python2.4 unfail --- terminatorlib/tests.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/terminatorlib/tests.py b/terminatorlib/tests.py index e8488847..9b199caa 100644 --- a/terminatorlib/tests.py +++ b/terminatorlib/tests.py @@ -11,7 +11,7 @@ def test_debug (): assert debug == False -class test_encodings(): +class test_encodings(object): encoding = None def setup (self): @@ -26,7 +26,7 @@ class test_encodings(): def test_get_list (self): assert self.encoding.get_list () == self.encoding.encodings -class test_config(): +class test_config(object): config = None def setup (self): @@ -50,7 +50,7 @@ class test_config(): assert store['titletips'] == False assert store['enable_real_transparency'] == False # until the bug is fixed -class test_configfile(): +class test_configfile(object): configfile = None def setup (self):