1
0
mirror of https://github.com/facebookincubator/mvfst.git synced 2025-08-08 09:42:06 +03:00

QuicConnectionStats type change from string to the "native"

Reviewed By: lnicco

Differential Revision: D26379617

fbshipit-source-id: 308d53ca86c2a2e774e3618038eece7091482ed8
This commit is contained in:
Andrii Vasylevskyi
2021-02-19 10:45:06 -08:00
committed by Facebook GitHub Bot
parent ba71671bb2
commit b1a364b9dd
5 changed files with 16 additions and 15 deletions

View File

@@ -3659,7 +3659,7 @@ TEST_F(
TEST_F(QuicTransportImplTest, GetConnectionStatsSmoke) {
auto stats = transport->getConnectionsStats();
EXPECT_EQ(stats.congestionController, kCongestionControlCubicStr);
EXPECT_EQ(stats.congestionController, CongestionControlType::Cubic);
EXPECT_EQ(stats.clientConnectionId, "0a090807");
}