Skip to content

Commit

Permalink
style(tests): add empty lines after namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielSeemaier committed Oct 30, 2024
1 parent 288ed7e commit e5c53ff
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/endtoend/dist_endtoend_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@
#include "kaminpar-common/math.h"

namespace kaminpar::dist {

namespace data {

static std::vector<GlobalEdgeID> global_xadj = {
#include "data.graph.xadj"
};
Expand Down Expand Up @@ -54,6 +56,7 @@ std::vector<GlobalEdgeID> create_xadj() {

return xadj;
}

} // namespace data

TEST(DistEndToEndTest, partitions_empty_unweighted_graph) {
Expand Down Expand Up @@ -195,4 +198,5 @@ TEST(DistEndToEndTest, partitions_unweighted_walshaw_data_graph_with_three_threa
dist.import_graph(vtxdist_ptr, xadj_ptr, adjncy_ptr, nullptr, nullptr);
dist.compute_partition(16, seed0_partition.data());
}

} // namespace kaminpar::dist

0 comments on commit e5c53ff

Please sign in to comment.