mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-17 23:56:05 +02:00
Fixed truncated string in Console.WriteLine test output
This commit is contained in:
parent
ee8c062253
commit
327a92ba10
1 changed files with 1 additions and 1 deletions
|
@ -198,7 +198,7 @@ namespace IDE
|
||||||
String outputLine = scope String();
|
String outputLine = scope String();
|
||||||
outputLine.Append(" >");
|
outputLine.Append(" >");
|
||||||
if (crPos - lastCrPos - 2 > 0)
|
if (crPos - lastCrPos - 2 > 0)
|
||||||
outputLine.Append(StringView(queuedOutText, lastCrPos + 1, crPos - lastCrPos - 2));
|
outputLine.Append(StringView(queuedOutText, lastCrPos + 1, crPos - lastCrPos - 1));
|
||||||
|
|
||||||
QueueOutputLine(outputLine);
|
QueueOutputLine(outputLine);
|
||||||
lastCrPos = crPos;
|
lastCrPos = crPos;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue