Skip to content

Commit

Permalink
fix lint errors
Browse files Browse the repository at this point in the history
fix lint errors

fix lint errors

fix lint errors
  • Loading branch information
rvinaybharadwaj committed Sep 19, 2024
1 parent 3a626b5 commit ae9ec40
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions tests/feeder/wrapperTests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,7 @@ TEST_F(WrapperNodeTest, ConstructorWrapperNodeTest) {
ASSERT_EQ(children[0]->id(), 217);
ASSERT_EQ(children[1]->id(), 430);
ASSERT_EQ(children[2]->id(), 435);
}
else if (ext == "json") {
} else if (ext == "json") {
std::vector<JSONNode> children;
node.getChildren(children);
ASSERT_EQ(children[0].id(), 217);
Expand Down Expand Up @@ -138,8 +137,7 @@ TEST_F(WrapperNodeTest, AddNodeTest) {
node.lookupNode(216);
pnode2 = node.getProtobufNode();
ASSERT_EQ(pnode2->id(), 216);
}
else if (ext == "json") {
} else if (ext == "json") {
JSON jnode1;
node.lookupNode(216);
jnode1 = node.getJSONNode();
Expand All @@ -163,8 +161,7 @@ TEST_F(WrapperNodeTest, NodeGetChildrenTest) {
node.getChildren(children);
ASSERT_EQ(children[0]->id(), 217);
ASSERT_EQ(children[2]->id(), 435);
}
else if (ext == "json") {
} else if (ext == "json") {
std::vector<JSONNode> children;
node.getChildren(children);
ASSERT_EQ(children[0].id(), 217);
Expand Down

0 comments on commit ae9ec40

Please sign in to comment.