~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/archiveuploader/tests/test_uploadpolicy.py

  • Committer: Launchpad Patch Queue Manager
  • Date: 2011-12-20 04:38:42 UTC
  • mfrom: (14550.1.2 refactor-imports-redux)
  • Revision ID: launchpad@pqm.canonical.com-20111220043842-5djlrud7wls7cqex
[r=stevenk][no-qa] Re-run format-imports over lib/lp and
 lib/canonical/launchpad.

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
# GNU Affero General Public License version 3 (see the file LICENSE).
5
5
 
6
6
from canonical.testing.layers import DatabaseFunctionalLayer
7
 
 
8
7
from lp.app.errors import NotFoundError
9
8
from lp.archiveuploader.uploadpolicy import (
10
9
    AbstractUploadPolicy,
11
10
    ArchiveUploadType,
12
11
    )
13
 
from lp.testing import TestCase, TestCaseWithFactory
 
12
from lp.testing import (
 
13
    TestCase,
 
14
    TestCaseWithFactory,
 
15
    )
14
16
 
15
17
 
16
18
class TestUploadPolicy_validateUploadType(TestCase):