~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/bugs/model/tests/test_bug.py

  • Committer: Launchpad Patch Queue Manager
  • Date: 2012-01-06 18:59:36 UTC
  • mfrom: (14645.1.1 typos)
  • Revision ID: launchpad@pqm.canonical.com-20120106185936-c36ko9sfri1s2lkd
[r=bac][no-qa] Fix a slew of typos.

Show diffs side-by-side

added added

removed removed

Lines of Context:
398
398
        with person_logged_in(duplicate_bug.owner):
399
399
            duplicate_bug.markAsDuplicate(bug)
400
400
            # We unsubscribe the owner of the duplicate to avoid muddling
401
 
            # the results retuned by getSubscribersFromDuplicates()
 
401
            # the results returned by getSubscribersFromDuplicates()
402
402
            duplicate_bug.unsubscribe(
403
403
                duplicate_bug.owner, duplicate_bug.owner)
404
404
        for level in BugNotificationLevel.items:
422
422
        with person_logged_in(duplicate_bug.owner):
423
423
            duplicate_bug.markAsDuplicate(bug)
424
424
            # We unsubscribe the owner of the duplicate to avoid muddling
425
 
            # the results retuned by getSubscribersFromDuplicates()
 
425
            # the results returned by getSubscribersFromDuplicates()
426
426
            duplicate_bug.unsubscribe(
427
427
                duplicate_bug.owner, duplicate_bug.owner)
428
428
        subscriber = self.factory.makePerson()