diff options
author | Alan Kligman <ack@mozilla.com> | 2013-08-14 00:58:28 -0400 |
---|---|---|
committer | Alan Kligman <ack@mozilla.com> | 2013-08-14 00:58:28 -0400 |
commit | 2d51d99e4f77aed13d05e40b24976b62f8e926d0 (patch) | |
tree | fd1f92584ff2420134a3499490c9606cc77d809c /tests/runner.py | |
parent | ddc6000c88caafd7ae53f37728e5b315ddd8f877 (diff) |
Minor fixes for webrtc test.
Diffstat (limited to 'tests/runner.py')
-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 af671c11..2c6af351 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -480,7 +480,7 @@ def server_func(dir, q): if 'report_' in s.path: q.put(s.path) else: - filename = s.path[1:] + filename = s.path.split('?')[0][1:] if os.path.exists(filename): s.send_response(200) s.send_header("Content-type", "text/html") |