~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_ftp_transport.py

  • Committer: Jelmer Vernooij
  • Date: 2011-05-10 07:46:15 UTC
  • mfrom: (5844 +trunk)
  • mto: This revision was merged to the branch mainline in revision 5845.
  • Revision ID: jelmer@samba.org-20110510074615-eptod049ndjxc4i7
Merge bzr.dev.

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