Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ljcui committed Aug 16, 2024
1 parent ef40d67 commit 19a8289
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/test_lgraph_api.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1261,7 +1261,8 @@ TEST_F(TestLGraphApi, pairUniqueIndex) {
FieldData::Int32(i + 1));
if (iter.IsValid()) {
auto euid = iter.GetUid();
UT_EXPECT_FALSE(euid.src == vids[i] && euid.dst == vids[i + 1] && euid.lid == like_lid);
UT_EXPECT_FALSE(euid.src == vids[i] && euid.dst == vids[i + 1]
&& euid.lid == like_lid);
}
}
txn.Abort();
Expand Down

0 comments on commit 19a8289

Please sign in to comment.