~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_tuned_gzip.py

  • Committer: John Arbash Meinel
  • Date: 2006-06-18 02:21:57 UTC
  • mfrom: (1787 +trunk)
  • mto: This revision was merged to the branch mainline in revision 1794.
  • Revision ID: john@arbash-meinel.com-20060618022157-6e33aa9b67c25e4f
[merge] bzr.dev 1787

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
import zlib
26
26
 
27
27
 
28
 
from bzrlib import tuned_gzip
 
28
from bzrlib.tuned_gzip import *
29
29
 
30
30
 
31
31
class FakeDecompress(object):
74
74
        # read more bytes if there is less than 8 bytes (the 
75
75
        # gzip trailer) unread.
76
76
        stream = StringIO('\0\0\0\0\0\0\0\0')
77
 
        myfile = tuned_gzip.GzipFile(fileobj=stream)
 
77
        myfile = GzipFile(fileobj=stream)
78
78
        # disable the _new_member check, we are microtesting.
79
79
        myfile._new_member = False
80
80
        myfile.crc = zlib.crc32('')