~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/bugs/subscribers/tests/test_bug.py

  • Committer: Launchpad Patch Queue Manager
  • Date: 2012-01-01 11:37:40 UTC
  • mfrom: (14612.2.10 oh-god-so-many-imports)
  • Revision ID: launchpad@pqm.canonical.com-20120101113740-o241xl1m2njr25qn
[r=wgrant][no-qa] Post-apocalyptic tree-wide format-imports.

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
from storm.store import Store
7
7
from testtools.matchers import Is
8
8
 
9
 
from lp.services.webapp.publisher import canonical_url
10
 
from lp.testing.layers import ZopelessDatabaseLayer
11
9
from lp.bugs.adapters.bugdelta import BugDelta
12
10
from lp.bugs.enum import BugNotificationLevel
13
11
from lp.bugs.interfaces.bugtask import BugTaskStatus
21
19
    send_bug_details_to_new_bug_subscribers,
22
20
    )
23
21
from lp.registry.model.person import Person
 
22
from lp.services.webapp.publisher import canonical_url
24
23
from lp.testing import (
25
24
    TestCase,
26
25
    TestCaseWithFactory,
27
26
    )
 
27
from lp.testing.layers import ZopelessDatabaseLayer
28
28
 
29
29
 
30
30
class BugSubscriberTestCase(TestCaseWithFactory):