Skip to content

Commit c072270

Browse files
authored
fix: kokoro/windows/cmake-release-x86 CI (#15600)
1 parent 83d50dc commit c072270

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

google/cloud/pubsub/internal/subscription_session_test.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ TEST(SubscriptionSessionTest, ScheduleCallbacksWithOtelEnabled) {
225225

226226
auto spans = span_catcher->GetSpans();
227227
// There should be a process and ack span for each message.
228-
EXPECT_THAT(spans, SizeIs(Ge(2 * kAckCount)));
228+
EXPECT_THAT(spans, SizeIs(Ge(static_cast<std::size_t>(2 * kAckCount))));
229229
// Verify there is at least one process span.
230230
EXPECT_THAT(
231231
spans, Contains(AllOf(SpanHasInstrumentationScope(), SpanKindIsInternal(),

0 commit comments

Comments
 (0)