~alecu/ubuntuone-control-panel/timestamp-autofix

« back to all changes in this revision

Viewing changes to ubuntuone/controlpanel/web_client/tests/test_libsoup.py

  • Committer: Alejandro J. Cura
  • Date: 2011-10-06 21:53:36 UTC
  • Revision ID: alecu@canonical.com-20111006215336-nm6nd3ctji72bpds
fix lint warning

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
 
36
36
    def __init__(self):
37
37
        """Initialize this mock instance."""
 
38
        resource.Resource.__init__(self)
38
39
        self.request_headers = []
39
40
 
40
41
    # pylint: disable=C0103
43
44
        self.request_headers.append(request.requestHeaders)
44
45
        return "hello!"
45
46
 
 
47
 
46
48
class MockWebService(object):
47
49
    """A mock webservice for testing"""
48
50