py3: replace file() with open() in test-convert-p4-filetypes.t
authorPulkit Goyal <7895pulkit@gmail.com>
Sun, 11 Feb 2018 16:56:47 +0530
changeset 36051 42542adb8944
parent 36050 233fb0b91a35
child 36052 d7238d125aa2
py3: replace file() with open() in test-convert-p4-filetypes.t file() is not present in Python 3. While I was here, I added b'' prefix to make sure we write things correctly in Python 3. Differential Revision: https://phab.mercurial-scm.org/D2112
tests/test-convert-p4-filetypes.t
--- a/tests/test-convert-p4-filetypes.t	Sun Feb 11 17:30:42 2018 +0530
+++ b/tests/test-convert-p4-filetypes.t	Sun Feb 11 16:56:47 2018 +0530
@@ -52,7 +52,7 @@
   >          p4 add -t $T file_$T2
   >          ;;
   >       binary*)
-  >          $PYTHON -c "file('file_$T2', 'wb').write('this is $T')"
+  >          $PYTHON -c "open('file_$T2', 'wb').write(b'this is $T')"
   >          p4 add -t $T file_$T2
   >          ;;
   >       *)