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) {
563
563
{
564
564
565
565
// 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 ());
567
567
568
568
const json::Value *StartupEntry =
569
569
CurrentContext->EmittedJsons [0 ].get (" Startup" );
@@ -643,7 +643,7 @@ TEST(TelemetryTest, TelemetryEnabledSanitizeData) {
643
643
{
644
644
645
645
// 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 ());
647
647
648
648
const json::Value *StartupEntry =
649
649
CurrentContext->EmittedJsons [0 ].get (" Startup" );
You can’t perform that action at this time.
0 commit comments