Skip to content

Commit

Permalink
fix: failing unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielSeemaier committed May 6, 2024
1 parent b4aab11 commit 23196a4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/dist/coarsening/cluster_contraction_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ TEST(ClusterContractionTest, contract_local_edge) {
const auto graph = make_isolated_edges_graph(1);
const PEID size = mpi::get_comm_size(MPI_COMM_WORLD);

StaticArray<GlobalNodeID> clustering({graph.offset_n(), graph.offset_n()});
StaticArray<GlobalNodeID> clustering =
static_array::create<GlobalNodeID>({graph.offset_n(), graph.offset_n()});
const auto wrapped = contract_clustering(graph, clustering);
const auto &c_graph = wrapped->get();

Expand Down

0 comments on commit 23196a4

Please sign in to comment.