/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 breezy/tests/test_wsgi.py

Fix a bunch of tests on python3.

Show diffs side-by-side

added added

removed removed

Lines of Context:
276
276
        wsgi_app = wsgi.SmartWSGIApp(self.get_transport())
277
277
        # send a request to /repo/branch that will have to access /repo.
278
278
        environ = self.make_hpss_wsgi_request(
279
 
            '/repo/branch', 'BzrDir.open_branchV2', '.')
 
279
            '/repo/branch', b'BzrDir.open_branchV2', b'.')
280
280
        iterable = wsgi_app(environ, self.start_response)
281
281
        response_bytes = self.read_response(iterable)
282
282
        self.assertEqual('200 OK', self.status)