Skip to content

Commit aca244f

Browse files
committed
Fix comparaison sign.
1 parent be6550c commit aca244f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/unittests/Support/LSP/Transport.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ TEST_F(TransportInputTest, OutgoingRequestJSONParseFailure) {
190190
responseCallbackInvoked += 1;
191191
});
192192
callFn({}, 109);
193-
EXPECT_EQ(responseCallbackInvoked, 0);
193+
EXPECT_EQ(responseCallbackInvoked, 0u);
194194

195195
// The request receives multiple responses, but only the first one triggers
196196
// the response callback. The first response has erroneous JSON that causes a

0 commit comments

Comments
 (0)