Index: test/variables/commands/gyptest-commands-ignore-env.py |
diff --git a/test/variables/commands/gyptest-commands-ignore-env.py b/test/variables/commands/gyptest-commands-ignore-env.py |
index 1cf3308dc4e1d418e6897409f9230113f1d63c2b..5470d5ce36455fa33a79205ed664ab4cb0013acd 100755 |
--- a/test/variables/commands/gyptest-commands-ignore-env.py |
+++ b/test/variables/commands/gyptest-commands-ignore-env.py |
@@ -9,6 +9,7 @@ Test that environment variables are ignored when --ignore-environment is |
specified. |
""" |
+from __future__ import print_function |
import os |
import TestGyp |
@@ -39,7 +40,7 @@ test.run_gyp('commands.gyp', |
contents = test.read('commands.gypd').replace('\r', '') |
expect = test.read('commands.gypd.golden').replace('\r', '') |
if not test.match(contents, expect): |
- print "Unexpected contents of `commands.gypd'" |
+ print("Unexpected contents of `commands.gypd'") |
test.diff(expect, contents, 'commands.gypd ') |
test.fail_test() |