~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_tuned_gzip.py

  • Committer: Robey Pointer
  • Date: 2006-07-01 19:03:33 UTC
  • mfrom: (1829 +trunk)
  • mto: This revision was merged to the branch mainline in revision 1830.
  • Revision ID: robey@lag.net-20060701190333-f58465aec4bd3412
merge from bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
import zlib
26
26
 
27
27
 
28
 
from bzrlib.tuned_gzip import *
 
28
from bzrlib import tuned_gzip
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 = GzipFile(fileobj=stream)
 
77
        myfile = tuned_gzip.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('')