~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/services/timeline/tests/test_requesttimeline.py

  • Committer: Launchpad Patch Queue Manager
  • Date: 2011-08-10 01:48:28 UTC
  • mfrom: (13643.1.1 usetimeline)
  • Revision ID: launchpad@pqm.canonical.com-20110810014828-9gaxl6zrcg32y4nk
[r=lifeless][no-qa] Use the factored out timeline package.

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
__metaclass__ = type
7
7
 
8
8
import testtools
 
9
from timeline.timeline import OverlappingActionError, Timeline
9
10
from zope.publisher.browser import TestRequest
10
11
 
11
12
from canonical.launchpad import webapp
13
14
    get_request_timeline,
14
15
    set_request_timeline,
15
16
    )
16
 
from lp.services.timeline.timeline import OverlappingActionError, Timeline
17
17
 
18
18
 
19
19
class TestRequestTimeline(testtools.TestCase):