ifctester.reporter.Txt small fix

This commit is contained in:
Andrej730
2024-04-16 16:16:44 +05:00
parent 708ee7350b
commit 6ee7502920
+1 -1
View File
@@ -218,7 +218,7 @@ class Txt(Console):
self.text = ""
def print(self, txt: str, end: Optional[str] = None):
self.text += txt + "\n" if end is None else txt
self.text += txt + "\n" if end is None else end
def to_string(self) -> None:
print(self.text)