/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

  • Committer: Andrew Bennetts
  • Date: 2009-03-27 06:12:29 UTC
  • mto: This revision was merged to the branch mainline in revision 4226.
  • Revision ID: andrew.bennetts@canonical.com-20090327061229-tc6h0ofy5ans2lub
Fix one test failure in test_http under Python 2.7a0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1307
1307
        # Since the tests using this class will replace
1308
1308
        # _urllib2_wrappers.Request, we can't just call the base class __init__
1309
1309
        # or we'll loop.
1310
 
        RedirectedRequest.init_orig(self, method, url, args, kwargs)
 
1310
        RedirectedRequest.init_orig(self, method, url, *args, **kwargs)
1311
1311
        self.follow_redirections = True
1312
1312
 
1313
1313