/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_ssh_transport.py

  • Committer: Aaron Bentley
  • Date: 2007-11-18 18:43:35 UTC
  • mfrom: (3006 +trunk)
  • mto: This revision was merged to the branch mainline in revision 3011.
  • Revision ID: aaron.bentley@utoronto.ca-20071118184335-rjptgedxv4357lna
Merge from bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
76
76
        manager = TestSSHVendorManager()
77
77
        self.assertRaises(SSHVendorNotFound, manager.get_vendor, {})
78
78
        manager.set_ssh_version_string("plink")
79
 
        self.assertIsInstance(manager.get_vendor({}), PLinkSubprocessVendor)
 
79
        # because autodetection of plink vendor is temporary disabled
 
80
        # next test is no longer pass. so it's disabled as well.
 
81
        #~self.assertIsInstance(manager.get_vendor({}), PLinkSubprocessVendor)
 
82
        # expect error instead (bialix 20071115)
 
83
        self.assertRaises(SSHVendorNotFound, manager.get_vendor, {})
80
84
 
81
85
    def test_cached_vendor(self):
82
86
        manager = TestSSHVendorManager()