summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorTom <tom@tomforb.es>2017-05-20 22:16:36 +0100
committerTim Graham <timograham@gmail.com>2017-05-27 13:59:05 -0400
commit7afb47646920ab3835dfa1750257dace01883a4b (patch)
tree8ee40e80cb841075fb6c282dfd72ed108b951066 /tests
parent94475aab800fc492853b67ada6b6b33d47554393 (diff)
Fixed #28226 -- Replaced use of str.join() with concatenation.
Diffstat (limited to 'tests')
-rwxr-xr-xtests/runtests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/runtests.py b/tests/runtests.py
index b05483526e..9202534c51 100755
--- a/tests/runtests.py
+++ b/tests/runtests.py
@@ -183,7 +183,7 @@ def setup(verbosity, test_labels, parallel):
installed_app_names = set(get_installed())
for modpath, module_name in test_modules:
if modpath:
- module_label = '.'.join([modpath, module_name])
+ module_label = modpath + '.' + module_name
else:
module_label = module_name
# if the module (or an ancestor) was named on the command line, or