We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b9c78d2 commit f234dfdCopy full SHA for f234dfd
util/env_test.cc
@@ -182,7 +182,8 @@ TEST(EnvPosixTest, TwoPools) {
182
}
183
// Wait a short while for the jobs to be dispatched.
184
Env::Default()->SleepForMicroseconds(kDelayMicros);
185
- ASSERT_EQ((unsigned int)(kJobs - kLowPoolSize), env_->GetThreadPoolQueueLen());
+ ASSERT_EQ((unsigned int)(kJobs - kLowPoolSize),
186
+ env_->GetThreadPoolQueueLen());
187
ASSERT_EQ((unsigned int)(kJobs - kLowPoolSize),
188
env_->GetThreadPoolQueueLen(Env::Priority::LOW));
189
ASSERT_EQ((unsigned int)(kJobs - kHighPoolSize),
0 commit comments