diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-01-10 18:41:38 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-01-10 18:41:38 -0800 |
commit | ed02667266b2bb5d11db9c9639427beaa8ee5c88 (patch) | |
tree | b88cc7e5a6cb60e3a6799f3683fdfff9f296ee25 /tests/runner.py | |
parent | f4e239ed21d9f6ea79693f003f2d595143937108 (diff) |
fix fix_closure bug with the relevant line being split over several lines
Diffstat (limited to 'tests/runner.py')
-rw-r--r-- | tests/runner.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/runner.py b/tests/runner.py index 86162476..507a422d 100644 --- a/tests/runner.py +++ b/tests/runner.py @@ -5473,7 +5473,7 @@ f.close() expected = path_from_root('tests', 'test-fix-closure.out.js') Popen(['python', path_from_root('tools', 'fix_closure.py'), input, 'out.js']).communicate(input) output = open('out.js').read() - assert '0,uninline_Q_269,0' in output + assert '0,uninline_Q_14782,0' in output assert 'function(a,c)' not in output # should be uninlined, so it gets a name assert run_js(input) == run_js('out.js') |