Bug 1480454 - Part b: Improve assertion in _emit_manifest_at; r=bbouvier

This adds a message to the assertion, and removes a leftover pdb invocation
(which causes unnecessary delays if it is triggered in automation).
This commit is contained in:
Ms2ger 2018-08-07 10:18:31 +02:00
Родитель 82d9496d6a
Коммит 6cd332bb7f
1 изменённых файлов: 1 добавлений и 4 удалений

Просмотреть файл

@ -241,10 +241,7 @@ def _emit_manifest_at(location, relative, test_gen, depth):
_emit_manifest_at(fullpath, relpath, test_list, depth + 1)
else:
numTestFiles += 1
if len(test_list) != 1:
import pdb
pdb.set_trace()
assert len(test_list) == 1
assert len(test_list) == 1, test_list
line = _build_manifest_script_entry(k, test_list[0])
manifest.append(line)