~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/plugins/launchpad/test_lp_api_lite.py

  • Committer: Jelmer Vernooij
  • Date: 2012-02-28 10:06:39 UTC
  • mfrom: (6437.40.2 rmbranch-colo)
  • mto: This revision was merged to the branch mainline in revision 6482.
  • Revision ID: jelmer@samba.org-20120228100639-p5gndu91wuqwugti
Merge rmbranch-colo.

Show diffs side-by-side

added added

removed removed

Lines of Context:
425
425
            lambda x: ('ubuntu', 'natty', 'bzr'))
426
426
        self.overrideAttr(lp_api_lite, 'LatestPublication',
427
427
            lambda *args: self.fail('Tried to query launchpad'))
428
 
        c = self.branch.get_config()
429
 
        c.set_user_option('launchpad.packaging_verbosity', 'off')
 
428
        c = self.branch.get_config_stack()
 
429
        c.set('launchpad.packaging_verbosity', 'off')
430
430
        orig_log_len = len(self.get_log())
431
431
        launchpad._check_is_up_to_date(self.branch)
432
432
        new_content = self.get_log()[orig_log_len:]