diff options
author | Rebecca Turner <rbt@sent.as> | 2024-04-06 14:39:01 -0700 |
---|---|---|
committer | Rebecca Turner <rbt@sent.as> | 2024-04-08 11:14:34 -0700 |
commit | 4a49a497eb39fbdedefc518c6d61c9a426641506 (patch) | |
tree | 97dd11da007d679836388515301896b54af4de0c /tests/functional/repl_characterization/test-session.cc | |
parent | b3233405381b50c7f7eb87d7962b25a06d16be44 (diff) |
Fix REPL test parser nits
Follow-up to https://gerrit.lix.systems/c/lix/+/546
Change-Id: Ie603f01e5520329bf879e061cea9e3fba45213fd
Diffstat (limited to 'tests/functional/repl_characterization/test-session.cc')
-rw-r--r-- | tests/functional/repl_characterization/test-session.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/functional/repl_characterization/test-session.cc b/tests/functional/repl_characterization/test-session.cc index 52179a372..c3eb45b85 100644 --- a/tests/functional/repl_characterization/test-session.cc +++ b/tests/functional/repl_characterization/test-session.cc @@ -121,7 +121,7 @@ bool TestSession::readOutThen(ReadOutThenCallback cb) bool TestSession::waitForPrompt() { - bool notEof = readOutThen([&](std::span<char> s) -> ReadOutThenCallbackResult { + bool notEof = readOutThen([&](std::span<const char> s) -> ReadOutThenCallbackResult { bool foundPrompt = false; for (auto ch : s) { @@ -147,7 +147,7 @@ bool TestSession::waitForPrompt() void TestSession::wait() { - readOutThen([&](std::span<char> s) { + readOutThen([&](std::span<const char> s) { for (auto ch : s) { eater.feed(ch, [&](char c) { outputParser.feed(c); |