Address review comment

This commit is contained in:
Trevor Clinkenbeard 2026-04-28 14:18:47 -07:00
parent 5103dc1e85
commit 958e089513
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,7 @@ TEST_CASE("/flow/IThreadPool/NamedThread") {
Reference<IThreadPool> pool = createGenericThreadPool();
pool->addThread(new ThreadNameReceiver(), "thread-foo");
co_await waitForThreadName(pool, "thread-foo");
ASSERT(co_await waitForThreadName(pool, "thread-foo"));
co_await pool->stop();
}