~txaws-dev/txaws/trunk

« back to all changes in this revision

Viewing changes to txaws/server/tests/test_method.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:
3
3
from txaws.server.method import Method
4
4
 
5
5
 
6
 
class MethodTest(TestCase):
 
6
class MethodTestCase(TestCase):
7
7
 
8
8
    def setUp(self):
9
 
        super(MethodTest, self).setUp()
 
9
        super(MethodTestCase, self).setUp()
10
10
        self.method = Method()
11
11
 
12
12
    def test_defaults(self):