← Back to team overview

launchpad-reviewers team mailing list archive

[Merge] lp:~michael.nelson/launchpad/db-devel-import-fix-20100827 into lp:launchpad

 

Michael Nelson has proposed merging lp:~michael.nelson/launchpad/db-devel-import-fix-20100827 into lp:launchpad.

Requested reviews:
  Launchpad code reviewers (launchpad-reviewers)


Overview
========

Fixes an import error on db-devel:

https://lpbuildbot.canonical.com/builders/lucid_db_lp/builds/139/steps/shell_7/logs/summary

which looks like the result of a db-devel specific change that therefore wasn't updated by the soyuz.enums changes that were merged from devel.

Test with:
bin/test -vvm test_binarypackagerelease
-- 
https://code.launchpad.net/~michael.nelson/launchpad/db-devel-import-fix-20100827/+merge/33876
Your team Launchpad code reviewers is requested to review the proposed merge of lp:~michael.nelson/launchpad/db-devel-import-fix-20100827 into lp:launchpad.
=== modified file 'lib/lp/soyuz/tests/test_binarypackagerelease.py'
--- lib/lp/soyuz/tests/test_binarypackagerelease.py	2010-08-21 13:56:34 +0000
+++ lib/lp/soyuz/tests/test_binarypackagerelease.py	2010-08-27 08:07:46 +0000
@@ -6,10 +6,8 @@
 __metaclass__ = type
 
 from canonical.testing import LaunchpadFunctionalLayer
-from lp.soyuz.interfaces.binarypackagerelease import (
-    BinaryPackageFormat,
-    IBinaryPackageRelease,
-    )
+from lp.soyuz.enums import BinaryPackageFormat
+from lp.soyuz.interfaces.binarypackagerelease import IBinaryPackageRelease
 from lp.soyuz.interfaces.publishing import PackagePublishingPriority
 from lp.testing import TestCaseWithFactory