tests/test-dispatch.py
changeset 9031 3b76321aa0de
parent 5178 18a9fbb5cd78
child 14438 08bfec2ef031
--- 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")