Skip to content

Commit

Permalink
Small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sbaldu committed Sep 26, 2023
1 parent e24b8ea commit c32d9fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/GraphTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ TEST(GraphTest, FindEdge_Test) {
edgeSet.insert(make_shared<CXXGraph::UndirectedEdge<int>>(edge));
edgeSet.insert(make_shared<CXXGraph::UndirectedEdge<int>>(edge2));
CXXGraph::Graph<int> graph(edgeSet);
unsigned long edgeId = 0;
size_t edgeId = 0;
ASSERT_TRUE(graph.findEdge(&node1,&node2,edgeId));
CXXGraph::UndirectedEdge<int> edge3(3, node1, node3);

Expand Down

0 comments on commit c32d9fa

Please sign in to comment.