| Index: test/variables/commands/gyptest-commands.py
|
| diff --git a/test/variables/commands/gyptest-commands.py b/test/variables/commands/gyptest-commands.py
|
| index ef1af8c52519f6816378c42c09bc68b276f93b3b..3251120ff477af2e65af73011942c5401282c79f 100755
|
| --- a/test/variables/commands/gyptest-commands.py
|
| +++ b/test/variables/commands/gyptest-commands.py
|
| @@ -8,6 +8,7 @@
|
| Test variable expansion of '<!()' syntax commands.
|
| """
|
|
|
| +from __future__ import print_function
|
| import os
|
|
|
| import TestGyp
|
| @@ -32,7 +33,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()
|
|
|
|
|