File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -563,7 +563,7 @@ TEST(TelemetryTest, TelemetryEnabled) {
563563 {
564564
565565 // There should be 3 events emitted by the Telemeter (start, midpoint, exit)
566- EXPECT_EQ (3 , CurrentContext->EmittedJsons .size ());
566+ EXPECT_EQ (static_cast < size_t >( 3 ) , CurrentContext->EmittedJsons .size ());
567567
568568 const json::Value *StartupEntry =
569569 CurrentContext->EmittedJsons [0 ].get (" Startup" );
@@ -643,7 +643,7 @@ TEST(TelemetryTest, TelemetryEnabledSanitizeData) {
643643 {
644644
645645 // There should be 3 events emitted by the Telemeter (start, midpoint, exit)
646- EXPECT_EQ (3 , CurrentContext->EmittedJsons .size ());
646+ EXPECT_EQ (static_cast < size_t >( 3 ) , CurrentContext->EmittedJsons .size ());
647647
648648 const json::Value *StartupEntry =
649649 CurrentContext->EmittedJsons [0 ].get (" Startup" );
You can’t perform that action at this time.
0 commit comments