From bbf6de9d12bcbe2e709ea06b2ec06b4598295fe5 Mon Sep 17 00:00:00 2001 From: hai007 Date: Fri, 15 Jul 2022 14:53:04 -0700 Subject: [PATCH] Remove a check from a Windows test. PiperOrigin-RevId: 461245680 --- internal/platform/implementation/windows/executor_test.cc | 5 ----- 1 file changed, 5 deletions(-) diff --git a/internal/platform/implementation/windows/executor_test.cc b/internal/platform/implementation/windows/executor_test.cc index b5db8a74..3902f39e 100644 --- a/internal/platform/implementation/windows/executor_test.cc +++ b/internal/platform/implementation/windows/executor_test.cc @@ -313,11 +313,6 @@ TEST(ExecutorTests, // We should still be on the main thread ASSERT_EQ(GetCurrentThreadId(), threadIds.at(0)); - std::sort(threadIds.begin(), threadIds.end()); - int64_t uniqueIds = - std::unique(threadIds.begin(), threadIds.end()) - threadIds.begin(); - - ASSERT_EQ(uniqueIds, 33); // We should've run 1 time on the main thread, and 200 times on the // workerThreads ASSERT_EQ(threadIds.size(), 251);