~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Vincent Ladeuil
  • Date: 2012-02-14 17:22:37 UTC
  • mfrom: (6466 +trunk)
  • mto: This revision was merged to the branch mainline in revision 6468.
  • Revision ID: v.ladeuil+lp@free.fr-20120214172237-7dv7er3n4uy8d5m4
Merge trunk

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:]