aboutsummaryrefslogtreecommitdiff
path: root/tests/runner.py
diff options
context:
space:
mode:
authorAlan Kligman <ack@mozilla.com>2013-08-14 00:58:28 -0400
committerAlan Kligman <ack@mozilla.com>2013-08-14 00:58:28 -0400
commit2d51d99e4f77aed13d05e40b24976b62f8e926d0 (patch)
treefd1f92584ff2420134a3499490c9606cc77d809c /tests/runner.py
parentddc6000c88caafd7ae53f37728e5b315ddd8f877 (diff)
Minor fixes for webrtc test.
Diffstat (limited to 'tests/runner.py')
-rwxr-xr-xtests/runner.py2
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")