| Index: test/mac/gyptest-postbuild-defaults.py
|
| diff --git a/test/mac/gyptest-postbuild-defaults.py b/test/mac/gyptest-postbuild-defaults.py
|
| index 892a0c4b067d11135fa75e56abe91dcee2380451..0f7d25bd89b74760b789b34091d43ff6049e6893 100644
|
| --- a/test/mac/gyptest-postbuild-defaults.py
|
| +++ b/test/mac/gyptest-postbuild-defaults.py
|
| @@ -8,12 +8,14 @@
|
| Verifies that a postbuild invoking |defaults| works.
|
| """
|
|
|
| +from __future__ import print_function
|
| +
|
| import TestGyp
|
|
|
| import sys
|
|
|
| if sys.platform == 'darwin':
|
| - print "This test is currently disabled: https://crbug.com/483696."
|
| + print("This test is currently disabled: https://crbug.com/483696.")
|
| sys.exit(0)
|
|
|
| test = TestGyp.TestGyp(formats=['ninja', 'make', 'xcode'])
|
|
|