~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/soyuz/stories/soyuz/xx-binarypackagerelease-index.txt

  • Committer: Launchpad Patch Queue Manager
  • Date: 2011-06-08 15:27:40 UTC
  • mfrom: (13168.2.2 reorder-createqueue-params)
  • Revision ID: launchpad@pqm.canonical.com-20110608152740-m91629fwdomjry1d
[r=julian-edwards][no-qa] Re-order parameters on
 IDistroSeries.createQueueEntry so changesfiles can be optional

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
  >>> login('foo.bar@canonical.com')
31
31
  >>> build = getUtility(IBinaryPackageBuildSet).getByID(2)
32
32
  >>> package_upload = build.distro_series.createQueueEntry(
33
 
  ...     PackagePublishingPocket.UPDATES, 'changes.txt', 'my changes',
34
 
  ...     build.archive)
 
33
  ...     PackagePublishingPocket.UPDATES, build.archive,
 
34
  ...    'changes.txt', 'my changes')
35
35
  >>> package_upload_build = PackageUploadBuild(
36
36
  ...     packageupload =package_upload,
37
37
  ...     build=build)