diff options
-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 4e260bf5..de5682c7 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -5552,7 +5552,7 @@ f.close() # Finally, do some web browser tests def run_browser(html_file, message): - webbrowser.open_new(html_file) + webbrowser.open_new(os.path.abspath(html_file)) print 'A web browser window should have opened a page containing the results of a part of this test.' print 'You need to manually look at the page to see that it works ok: ' + message print '(sleeping for a bit to keep the directory alive for the web browser..)' |