D2112: py3: replace file() with open() in test-convert-p4-filetypes.t
pulkit (Pulkit Goyal)
phabricator at mercurial-scm.org
Sun Feb 11 14:04:23 UTC 2018
This revision was automatically updated to reflect the committed changes.
Closed by commit rHG42542adb8944: py3: replace file() with open() in test-convert-p4-filetypes.t (authored by pulkit, committed by ).
REPOSITORY
rHG Mercurial
CHANGES SINCE LAST UPDATE
https://phab.mercurial-scm.org/D2112?vs=5375&id=5401
REVISION DETAIL
https://phab.mercurial-scm.org/D2112
AFFECTED FILES
tests/test-convert-p4-filetypes.t
CHANGE DETAILS
diff --git a/tests/test-convert-p4-filetypes.t b/tests/test-convert-p4-filetypes.t
--- a/tests/test-convert-p4-filetypes.t
+++ b/tests/test-convert-p4-filetypes.t
@@ -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
> ;;
> *)
To: pulkit, #hg-reviewers
Cc: mercurial-devel
More information about the Mercurial-devel
mailing list