This macro was mistakenly not used when the
test_min_edge_node_overlap_polygon_node_shapes and
test_max_edge_node_overlap_polygon_node_shapes tests were introduced.
This ensures that the generated artifact file names begin with the
same name as the test case file (thanks @smattr).
.check_min_edge_stem_arrow_overlap = false,
};
- const auto filename_base =
- fmt::format("test_edge_node_overlap_polygon_node_shape_{}", shape);
+ const auto filename_base = fmt::format("{}_{}", AUTO_NAME(), shape);
test_edge_node_overlap(graph_options, check_options,
{.filename_base = filename_base});
.check_min_edge_stem_arrow_overlap = false,
};
- const auto filename_base =
- fmt::format("test_max_edge_node_overlap_polygon_node_shape_{}", shape);
+ const auto filename_base = fmt::format("{}_{}", AUTO_NAME(), shape);
test_edge_node_overlap(graph_options, check_options,
{.filename_base = filename_base});