Skip to content

Commit

Permalink
fix pool test for process generation incrementing
Browse files Browse the repository at this point in the history
  • Loading branch information
CamJN committed Oct 17, 2024
1 parent 04fb08b commit dec5f73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/cxx/Core/ApplicationPool/PoolTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -652,7 +652,7 @@ namespace tut {
EVENTUALLY(5,
LockGuard l(pool->syncher);
vector<ProcessPtr> processes = pool->getProcesses(false);
processes.size() > 0 && processes[0]->getPid() != pid;
result = (processes.size() > 0 && processes[0]->getPid() != pid);
);
pool->asyncGet(options, callback);
EVENTUALLY(5,
Expand Down

0 comments on commit dec5f73

Please sign in to comment.