~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/testing/tests/test_fakemethod.py

  • Committer: Steve Kowalik
  • Date: 2011-08-12 11:37:08 UTC
  • mto: This revision was merged to the branch mainline in revision 13686.
  • Revision ID: stevenk@ubuntu.com-20110812113708-jtafl8yetsg9wst1
RemoveĀ unneededĀ unittestĀ imports.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# Copyright 2010 Canonical Ltd.  This software is licensed under the
2
2
# GNU Affero General Public License version 3 (see the file LICENSE).
3
3
 
4
 
from unittest import (
5
 
    TestCase,
6
 
    TestLoader,
7
 
    )
 
4
from unittest import TestCase
8
5
 
9
6
from lp.testing.fakemethod import FakeMethod
10
7