~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/soyuz/scripts/tests/test_queue.py

[r=wgrant][ui=huwshimi][bug=878605] We don't want to support
 multi-tenanted private bugs.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1116
1116
        # we're testing.
1117
1117
        spr = self.factory.makeSourcePackageRelease(changelog_entry="blah")
1118
1118
        archive_admin = self.factory.makePerson()
1119
 
        bug = self.factory.makeBug(private=True)
1120
 
        bug_task = self.factory.makeBugTask(target=spr.sourcepackage, bug=bug)
 
1119
        bug_task = self.factory.makeBugTask(
 
1120
            target=spr.sourcepackage, private=True)
 
1121
        bug = bug_task.bug
1121
1122
        changes = StringIO(changes_file_template % bug.id)
1122
1123
 
1123
1124
        with person_logged_in(archive_admin):