[CMF-checkins] CVS: CMF/CMFCore/tests - test_FSImage.py:1.3
Tres Seaver
tseaver@zope.com
Wed, 8 May 2002 09:39:01 -0400
Update of /cvs-repository/CMF/CMFCore/tests
In directory cvs.zope.org:/tmp/cvs-serv9794/CMFCore/tests
Modified Files:
test_FSImage.py
Log Message:
- Ensure that test file doesn't get mangled on Windows.
=== CMF/CMFCore/tests/test_FSImage.py 1.2 => 1.3 ===
path = os.path.join( skin_path_name, 'test_image.gif' )
- f = open( path )
+ f = open( path, 'rb' )
try:
data = f.read()
finally: