~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/testing/yuixhr.py

  • Committer: Launchpad Patch Queue Manager
  • Date: 2012-01-06 12:11:50 UTC
  • mfrom: (14625.2.7 gina-dsc-binaries)
  • Revision ID: launchpad@pqm.canonical.com-20120106121150-e0bucmb5qeyytnn9
[r=wgrant][bug=911943] Fix SourcePackageReleaseDscBinariesUpdater:
        round chunk_size to int (and document this issue).

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
from zope.security.proxy import removeSecurityProxy
34
34
from zope.session.interfaces import IClientIdManager
35
35
 
36
 
from canonical.config import config
 
36
from lp.app.versioninfo import revno
 
37
from lp.services.config import config
37
38
from lp.services.webapp.interfaces import (
38
39
    IOpenLaunchBag,
39
40
    IPlacelessAuthUtility,
40
41
    )
41
42
from lp.services.webapp.login import logInPrincipal
42
43
from lp.services.webapp.publisher import LaunchpadView
43
 
from canonical.testing.layers import (
 
44
from lp.testing import AbstractYUITestCase
 
45
from lp.testing.layers import (
44
46
    DatabaseLayer,
45
47
    LaunchpadLayer,
46
48
    LayerProcessController,
47
49
    LibrarianLayer,
48
50
    YUIAppServerLayer,
49
51
    )
50
 
from lp.app.versioninfo import revno
51
 
from lp.testing import AbstractYUITestCase
52
52
 
53
53
 
54
54
EXPLOSIVE_ERRORS = (SystemExit, MemoryError, KeyboardInterrupt)