aboutsummaryrefslogtreecommitdiff
path: root/tests/runner.py
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2013-08-15 09:52:53 -0700
committerAlon Zakai <alonzakai@gmail.com>2013-08-15 09:52:53 -0700
commit0f76b5793a07987f17e95410af843eaa7f4eb823 (patch)
treeede0ab7aaab553b79b0348b53623a87d4127dafe /tests/runner.py
parent2e229a560955c07d1b66db27913af3284baa64fb (diff)
parent2d51d99e4f77aed13d05e40b24976b62f8e926d0 (diff)
Merge pull request #1513 from modeswitch/webrtc-tests
Webrtc test
Diffstat (limited to 'tests/runner.py')
-rwxr-xr-xtests/runner.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/runner.py b/tests/runner.py
index 2f508dfc..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")
@@ -771,4 +771,4 @@ an individual test with
else:
testRunner = unittest.TextTestRunner(verbosity=2)
for suite in suites:
- testRunner.run(suite)
+ testRunner.run(suite) \ No newline at end of file