Fix installer.py unit tests that check output

This commit is contained in:
Massimiliano Culpo 2020-10-22 12:37:00 +02:00 committed by Todd Gamblin
parent 87c87ff767
commit 346beedfd4

View File

@ -1667,7 +1667,8 @@ def build_specs(self, function_tuples):
# print out unknown actions so we can display them for debugging # print out unknown actions so we can display them for debugging
if not action: if not action:
print("%s(%s)" % (name, ", ".join(str(a) for a in args))) msg = "%s(%s)" % (name, ", ".join(str(a) for a in args))
tty.debug(msg)
continue continue
assert action and callable(action) assert action and callable(action)