~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/registry/tests/test_oopsreferences.py

  • Committer: William Grant
  • Date: 2012-01-01 02:58:52 UTC
  • mto: This revision was merged to the branch mainline in revision 14614.
  • Revision ID: william.grant@canonical.com-20120101025852-p6ouypk9mzb5usn8
format-imports on lib/. So many imports.

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
 
13
13
from pytz import utc
14
14
 
 
15
from lp.registry.model.oopsreferences import referenced_oops
15
16
from lp.services.database.lpstorm import IStore
16
 
from lp.testing.layers import DatabaseFunctionalLayer
17
 
from lp.registry.model.oopsreferences import referenced_oops
18
17
from lp.services.messages.model.message import (
19
18
    Message,
20
19
    MessageSet,
23
22
    person_logged_in,
24
23
    TestCaseWithFactory,
25
24
    )
 
25
from lp.testing.layers import DatabaseFunctionalLayer
26
26
 
27
27
 
28
28
class TestOopsReferences(TestCaseWithFactory):