~djfroofy/txaws/921421-completemultipart

« back to all changes in this revision

Viewing changes to txaws/server/tests/test_registry.py

  • Committer: Duncan McGreggor
  • Date: 2012-01-27 07:04:32 UTC
  • mfrom: (111.5.9 920302-python2.5-compat)
  • Revision ID: duncan@dreamhost.com-20120127070432-9ywtuw041cm5yh6y
Final missing chunk of Python 2.5 compatibility fixes. The others were
committed prematurely to trunk in r124 and r125.

Reviewed by: Stephon Striplin
Fixes: https://bugs.launchpad.net/txaws/+bug/920302

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
    has_venusian = False
17
17
 
18
18
 
19
 
class RegistryTest(TestCase):
 
19
class RegistryTestCase(TestCase):
20
20
 
21
21
    if no_class_decorators:
22
22
        skip = ("Your version of Python doesn't seem to support class "
23
23
                "decorators.")
24
24
 
25
25
    def setUp(self):
26
 
        super(RegistryTest, self).setUp()
 
26
        super(RegistryTestCase, self).setUp()
27
27
        self.registry = Registry()
28
28
 
29
29
    def test_add(self):