~0x44/nova/bug838466

« back to all changes in this revision

Viewing changes to nova/tests/rpc_unittest.py

  • Committer: Eric Day
  • Date: 2010-10-21 18:49:51 UTC
  • mto: This revision was merged to the branch mainline in revision 377.
  • Revision ID: eday@oddments.org-20101021184951-x0vs3s8y7mc0aeyy
PEP8 and pylint cleanup. There should be no functional changes here, just style changes to get violations down.

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
 
34
34
class RpcTestCase(test.TrialTestCase):
35
35
    """Test cases for rpc"""
36
 
    def setUp(self):  # pylint: disable-msg=C0103
 
36
    def setUp(self):
37
37
        super(RpcTestCase, self).setUp()
38
38
        self.conn = rpc.Connection.instance()
39
39
        self.receiver = TestReceiver()