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

Merge trunk to resolve conflicts

Show diffs side-by-side

added added

removed removed

Lines of Context:
2027
2027
        r = t._redirected_to('http://www.example.com/foo',
2028
2028
                             'https://foo.example.com/foo')
2029
2029
        self.assertIsInstance(r, type(t))
2030
 
        self.assertEqual(t._user, r._user)
 
2030
        self.assertEqual(t._parsed_url.user, r._parsed_url.user)
2031
2031
 
2032
2032
 
2033
2033
class PredefinedRequestHandler(http_server.TestingHTTPRequestHandler):