diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-05-15 11:58:42 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-05-15 11:58:42 -0700 |
commit | 1c072e505984973afbe43ca23e3205827dfeaf24 (patch) | |
tree | 2aee0987fc4bddf450ed9f9c6e5b65724d1a9eb6 | |
parent | ca91732506299933d14d36093a8aa69cc0670ea5 (diff) |
future proof a test
-rwxr-xr-x | tests/runner.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/runner.py b/tests/runner.py index 734dc51b..c17999b1 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -8515,7 +8515,7 @@ def process(filename): assert 'jsCall' not in generated Settings.RESERVED_FUNCTION_POINTERS = 1 - Settings.ALIASING_FUNCTION_POINTERS = 1 + Settings.ALIASING_FUNCTION_POINTERS = 1 - Settings.ALIASING_FUNCTION_POINTERS # flip the test self.do_run(src, '''Hello 7 from JS!''') def test_scriptaclass(self): |