Skip to content

Commit

Permalink
Automated change: Fix sanity tests
Browse files Browse the repository at this point in the history
  • Loading branch information
eugeneo committed Nov 15, 2024
1 parent 43f8e92 commit ad1e276
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/core/event_engine/posix/log_too_many_open_files_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ TEST(LogTooManyOpenFilesTest, MainTest) {
auto addr = grpc_event_engine::experimental::URIToResolvedAddress(
"ipv4:127.0.0.1:80");
ASSERT_TRUE(addr.ok());
::grpc_event_engine::experimental::DSMode dsmode;
grpc_event_engine::experimental::DSMode dsmode;
grpc_event_engine::experimental::SystemApi system_api;
absl::StatusOr<FileDescriptor> result =
::grpc_event_engine::experimental::CreateDualStackSocket(
grpc_event_engine::experimental::CreateDualStackSocket(
system_api, mock_socket_factory, *addr, SOCK_STREAM, AF_INET, dsmode);
EXPECT_FALSE(result.ok());
std::string emfile_message = grpc_core::StrError(EMFILE);
Expand Down

0 comments on commit ad1e276

Please sign in to comment.