~launchpad-pqm/launchpad/devel

« back to all changes in this revision

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

  • Committer: Colin Watson
  • Date: 2012-01-06 11:08:30 UTC
  • mto: This revision was merged to the branch mainline in revision 14650.
  • Revision ID: cjwatson@canonical.com-20120106110830-l6lj4zfbixcubel2
Fix a slew of typos that have been annoying me.

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()