Skip to content

Commit

Permalink
Try to get the error code on linux
Browse files Browse the repository at this point in the history
  • Loading branch information
anrossi committed Sep 3, 2024
1 parent aff4b8a commit e0923b6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/lib/ApiTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4606,7 +4606,7 @@ void QuicTestTlsParam()
CleanUpManual,
TestTlsParamListenerCallback,
&ServerContext);
TEST_QUIC_SUCCEEDED(Listener.IsValid());
TEST_QUIC_SUCCEEDED(Listener.GetInitStatus());
UniquePtr<MsQuicConnection> Server;
ServerContext.Server = (MsQuicConnection**)&Server;
Listener.Context = &ServerContext;
Expand Down Expand Up @@ -4679,7 +4679,7 @@ void QuicTestTlsParam()
CleanUpManual,
TestTlsParamListenerCallback,
&ServerContext);
TEST_QUIC_SUCCEEDED(Listener.IsValid());
TEST_QUIC_SUCCEEDED(Listener.GetInitStatus());
UniquePtr<MsQuicConnection> Server;
ServerContext.Server = (MsQuicConnection**)&Server;
Listener.Context = &ServerContext;
Expand Down

0 comments on commit e0923b6

Please sign in to comment.