Commit 74471eef by Edward Thomson

commit_graph: tests are now `commitgraph`

Underscores in filenames in tests indicate a logical separation - so
`commit_graph` becomes `commit::graph`.  Rename it to `commitgraph` to
avoid this.
parent 12c2eef7
......@@ -6,7 +6,7 @@
#include "commit_graph.h"
#include "futils.h"
void test_graph_commit_graph__parse(void)
void test_graph_commitgraph__parse(void)
{
git_repository *repo;
struct git_commit_graph_file *file;
......@@ -50,7 +50,7 @@ void test_graph_commit_graph__parse(void)
git_str_dispose(&commit_graph_path);
}
void test_graph_commit_graph__parse_octopus_merge(void)
void test_graph_commitgraph__parse_octopus_merge(void)
{
git_repository *repo;
struct git_commit_graph_file *file;
......@@ -91,7 +91,7 @@ void test_graph_commit_graph__parse_octopus_merge(void)
git_str_dispose(&commit_graph_path);
}
void test_graph_commit_graph__writer(void)
void test_graph_commitgraph__writer(void)
{
git_repository *repo;
git_commit_graph_writer *w = NULL;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment