~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/bugs/interfaces/tests/test_bugtask.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:
5
5
 
6
6
__metaclass__ = type
7
7
 
8
 
from lp.testing import TestCase
9
8
from lp.bugs.interfaces.bugtask import (
10
9
    BugTaskStatus,
11
10
    BugTaskStatusSearch,
13
12
    get_bugtask_status,
14
13
    normalize_bugtask_status,
15
14
    )
 
15
from lp.testing import TestCase
16
16
 
17
17
 
18
18
class TestFunctions(TestCase):