/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to breezy/tests/test_mail_client.py

  • Committer: Jelmer Vernooij
  • Date: 2018-11-12 01:41:38 UTC
  • mto: (7143.16.20 even-more-cleanups)
  • mto: This revision was merged to the branch mainline in revision 7175.
  • Revision ID: jelmer@jelmer.uk-20181112014138-3b0zyx91cu3wdq3k
More PEP8 fixes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
70
70
        cmdline = tbird._get_compose_commandline(u'jrandom@example.org',
71
71
                                                 u'Hi there!', u'file%')
72
72
        self.assertEqual(['-compose',
73
 
                          ("attachment='%s'," % urlutils.local_path_to_url('file%'))
 
73
                          ("attachment='%s'," %
 
74
                           urlutils.local_path_to_url('file%'))
74
75
                          + "subject='Hi there!',to='jrandom@example.org'",
75
76
                          ], cmdline)
76
77
        for item in cmdline: