/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_transport_implementations.py

  • Committer: Wouter van Heyst
  • Date: 2006-06-06 12:06:20 UTC
  • mfrom: (1740 +trunk)
  • mto: This revision was merged to the branch mainline in revision 1752.
  • Revision ID: larstiq@larstiq.dyndns.org-20060606120620-50066b0951e4ef7c
merge bzr.dev 1740

Show diffs side-by-side

added added

removed removed

Lines of Context:
706
706
        except (ConnectionError, NoSuchFile), e:
707
707
            pass
708
708
        except (Exception), e:
709
 
            self.failIf(True, 'Wrong exception thrown: %s' % e)
 
709
            self.fail('Wrong exception thrown (%s): %s' 
 
710
                        % (e.__class__.__name__, e))
710
711
        else:
711
 
            self.failIf(True, 'Did not get the expected exception.')
 
712
            self.fail('Did not get the expected ConnectionError or NoSuchFile.')
712
713
 
713
714
    def test_stat(self):
714
715
        # TODO: Test stat, just try once, and if it throws, stop testing