Compare commits

..

No commits in common. "424a0241cda284f2ca0db20f745c2a7cb4c8a12c" and "4f1a694e81af030f0c34e459e74b07a78503427f" have entirely different histories.

2 changed files with 3 additions and 9 deletions

View File

@ -25,10 +25,6 @@ Next
```
Thanks @mikomikotaishi for PR #1015.
### Component
- Fix ScreenInteractive::FixedSize screen stomps on the preceding terminal
output. Thanks @zozowell in #1064.
6.1.9 (2025-05-07)
------------

View File

@ -195,9 +195,7 @@ TEST(ScreenInteractive, FixedSizeInitialFrame) {
Loop loop(&screen, component);
loop.RunOnce();
}
using namespace std::string_view_literals;
auto expected =
ASSERT_EQ(
// Install the ScreenInteractive.
"\0" // Flush stdout.
"\x1BP$q q" // Set cursor shape to 1 (block).
@ -238,8 +236,8 @@ TEST(ScreenInteractive, FixedSizeInitialFrame) {
"\0" // Flush stdout.
// Skip one line to avoid the prompt to be printed over the last drawing.
"\r\n"sv;
ASSERT_EQ(expected, output);
"\r\n",
output);
#endif
}