| Index: test/mac/gyptest-loadable-module.py
|
| diff --git a/test/mac/gyptest-loadable-module.py b/test/mac/gyptest-loadable-module.py
|
| index 158a9305522b5a2c0fbf080db8e1a381bf5afb9f..77dde1d6cd1975a812f901458bdadafe93a86251 100755
|
| --- a/test/mac/gyptest-loadable-module.py
|
| +++ b/test/mac/gyptest-loadable-module.py
|
| @@ -8,6 +8,8 @@
|
| Tests that a loadable_module target is built correctly.
|
| """
|
|
|
| +from __future__ import print_function
|
| +
|
| import TestGyp
|
|
|
| import os
|
| @@ -15,7 +17,7 @@ import struct
|
| 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'])
|
|
|