~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_transport_implementations.py

  • Committer: John Arbash Meinel
  • Date: 2006-07-13 18:26:21 UTC
  • mto: This revision was merged to the branch mainline in revision 1869.
  • Revision ID: john@arbash-meinel.com-20060713182621-10fc8ce282741455
Fix up the http transports so that tests pass with the new configuration.

Show diffs side-by-side

added added

removed removed

Lines of Context:
709
709
        except (ConnectionError, NoSuchFile), e:
710
710
            pass
711
711
        except (Exception), e:
712
 
            self.fail('Wrong exception thrown (%s): %s' 
713
 
                        % (e.__class__.__name__, e))
 
712
            self.fail('Wrong exception thrown (%s.%s): %s' 
 
713
                        % (e.__class__.__module__, e.__class__.__name__, e))
714
714
        else:
715
715
            self.fail('Did not get the expected ConnectionError or NoSuchFile.')
716
716