Skip to content

Commit beda4ba

Browse files
committed
Fix bug with coverage testing
- Legacy-Id: 6937
1 parent 0c2c5a7 commit beda4ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ietf/utils/test_runner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ def run_tests(self, test_labels, extra_tests=None, **kwargs):
201201
# hack to do so automatically
202202
classes.append("ietf.utils.test_runner.FillInRemoteUserMiddleware")
203203
classes.append(m)
204-
settings.MIDDLEWARE_CLASSES = classes
204+
settings.MIDDLEWARE_CLASSES = tuple(classes)
205205

206206
check_coverage = not test_labels
207207

0 commit comments

Comments
 (0)