~vila/bzr/2.3-integration

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_ftp_transport.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2011-05-13 16:13:37 UTC
  • mfrom: (5642.1.6 2.3.3-dev)
  • Revision ID: pqm@pqm.ubuntu.com-20110513161337-a377gnro7njotyrs
(vila) Release 2.3.3 (Vincent Ladeuil)

Show diffs side-by-side

added added

removed removed

Lines of Context:
44
44
 
45
45
    def test_aftp_degrade(self):
46
46
        t = transport.get_transport('aftp://host/path')
47
 
        self.failUnless(t.is_active)
 
47
        self.assertTrue(t.is_active)
48
48
        parent = t.clone('..')
49
 
        self.failUnless(parent.is_active)
 
49
        self.assertTrue(parent.is_active)
50
50
 
51
51
        self.assertEqual('aftp://host/path', t.abspath(''))
52
52