~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/HTTPTestUtil.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-06-25 17:46:47 UTC
  • mfrom: (2547.2.1 jam-integration)
  • Revision ID: pqm@pqm.ubuntu.com-20070625174647-pocypsjmp861qgv7
(Vincent Ladeuil) Fix bug #121889 by working around urllib2 limitation.

Show diffs side-by-side

added added

removed removed

Lines of Context:
393
393
    def send_header_auth_reqed(self):
394
394
        tcs = self.server.test_case_server
395
395
        header = 'Digest realm="%s", ' % tcs.auth_realm
396
 
        header += 'nonce="%s", algorithm=%s, qop=auth' % (tcs.auth_nonce, 'MD5')
 
396
        header += 'nonce="%s", algorithm="%s", qop="auth"' % (tcs.auth_nonce,
 
397
                                                              'MD5')
397
398
        self.send_header(tcs.auth_header_sent,header)
398
399
 
399
400