Fix internal test failure.

pull/34874/head
Matthew Stevenson 12 months ago
parent 7a7ebba1d1
commit d5fb73e5b2
  1. 2
      test/core/security/system_roots_test.cc

@ -93,11 +93,13 @@ TEST(CreateRootCertsBundleTest, BundlesCorrectly) {
} }
#endif // GPR_LINUX || GPR_FREEBSD || GPR_APPLE #endif // GPR_LINUX || GPR_FREEBSD || GPR_APPLE
#if defined(GPR_WINDOWS)
TEST(LoadSystemRootCertsTest, Success) { TEST(LoadSystemRootCertsTest, Success) {
grpc_slice roots_slice = grpc_core::LoadSystemRootCerts(); grpc_slice roots_slice = grpc_core::LoadSystemRootCerts();
EXPECT_FALSE(GRPC_SLICE_IS_EMPTY(roots_slice)); EXPECT_FALSE(GRPC_SLICE_IS_EMPTY(roots_slice));
grpc_slice_unref(roots_slice); grpc_slice_unref(roots_slice);
} }
#endif // GPR_WINDOWS
} // namespace } // namespace
} // namespace grpc } // namespace grpc

Loading…
Cancel
Save