summaryrefslogtreecommitdiffstats
path: root/remoting/tools
diff options
context:
space:
mode:
authorwez <wez@chromium.org>2015-03-12 09:19:19 -0700
committerCommit bot <commit-bot@chromium.org>2015-03-12 16:19:45 +0000
commit0f92988f0ef745e9ea4b2ff68c897cb83d911469 (patch)
tree17105dd84ad04b3fd4553c52bdc8ab0cd3e22684 /remoting/tools
parentc5d2a79125d51665ec065be2481b2b54d8ca3895 (diff)
downloadchromium_src-0f92988f0ef745e9ea4b2ff68c897cb83d911469.zip
chromium_src-0f92988f0ef745e9ea4b2ff68c897cb83d911469.tar.gz
chromium_src-0f92988f0ef745e9ea4b2ff68c897cb83d911469.tar.bz2
Move mocks and unittest JS files to sit alongside production code.
Chromium normally places unit-test implementations alongside the class implementations, so that it's easy to see what has tests and what doesn't. Similarly placing mocks next to the corresponding interfaces or classes makes it easier to spot and re-use them. BUG=455972 Review URL: https://codereview.chromium.org/984203003 Cr-Commit-Position: refs/heads/master@{#320296}
Diffstat (limited to 'remoting/tools')
-rwxr-xr-xremoting/tools/run_webapp_unittests.py (renamed from remoting/tools/run_webapp_unittest.py)4
1 files changed, 2 insertions, 2 deletions
diff --git a/remoting/tools/run_webapp_unittest.py b/remoting/tools/run_webapp_unittests.py
index 6062c01..bff7128 100755
--- a/remoting/tools/run_webapp_unittest.py
+++ b/remoting/tools/run_webapp_unittests.py
@@ -3,7 +3,7 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
-"""Launches the remoting webapp unit test in chrome with the appropriate flags.
+"""Launches the remoting webapp unit tests in chrome with the appropriate flags.
"""
import argparse
@@ -32,7 +32,7 @@ def BuildTestPageUri(opt_module=None, opt_coverage=False):
script_path = os.path.dirname(__file__)
test_page_path = os.path.join(script_path,
- '../../out/Debug/remoting/unittests/unittest.html')
+ '../../out/Debug/remoting/unittests/unittests.html')
test_page_path = 'file://' + os.path.abspath(test_page_path)
test_page_params = {}