Mercurial > public > mercurial-scm > hg
diff tests/test-dispatch.py @ 9031:3b76321aa0de
compat: use open() instead of file() everywhere
author | Alejandro Santos <alejolp@alejolp.com> |
---|---|
date | Sun, 05 Jul 2009 11:01:30 +0200 |
parents | 18a9fbb5cd78 |
children | 08bfec2ef031 |
line wrap: on
line diff
--- a/tests/test-dispatch.py Sun Jul 05 11:01:01 2009 +0200 +++ b/tests/test-dispatch.py Sun Jul 05 11:01:30 2009 +0200 @@ -15,14 +15,14 @@ os.chdir('test1') # create file 'foo', add and commit -f = file('foo', 'wb') +f = open('foo', 'wb') f.write('foo\n') f.close() testdispatch("add foo") testdispatch("commit -m commit1 -d 2000-01-01 foo") # append to file 'foo' and commit -f = file('foo', 'ab') +f = open('foo', 'ab') f.write('bar\n') f.close() testdispatch("commit -m commit2 -d 2000-01-02 foo")