Update code.py to stop printing wrong outputs to terminal
This commit is contained in:
parent
d0d96c71d6
commit
6fefbb82e8
|
@ -1158,10 +1158,6 @@ class ReprEntry(TerminalRepr):
|
||||||
if is_failure_line:
|
if is_failure_line:
|
||||||
# from this point on all lines are considered part of the failure
|
# from this point on all lines are considered part of the failure
|
||||||
failure_lines.extend(self.lines[index:])
|
failure_lines.extend(self.lines[index:])
|
||||||
|
|
||||||
for line in self.lines[index:]:
|
|
||||||
print(line)
|
|
||||||
|
|
||||||
break
|
break
|
||||||
else:
|
else:
|
||||||
if self.style == "value":
|
if self.style == "value":
|
||||||
|
|
Loading…
Reference in New Issue